Staging
v0.5.1
https://github.com/python/cpython
Revision 4089b50080bd9ad2b769d3c42a610abe519c16c8 authored by Serhiy Storchaka on 28 October 2016, 09:14:34 UTC, committed by Serhiy Storchaka on 28 October 2016, 09:14:34 UTC
1 parent f831fd3
Raw File
Tip revision: 4089b50080bd9ad2b769d3c42a610abe519c16c8 authored by Serhiy Storchaka on 28 October 2016, 09:14:34 UTC
Fixed possible NULL decrefing.
Tip revision: 4089b50
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
	return PLATFORM;
}
back to top