Staging
v0.5.1
Revision b992a0e102c1dcc8d038983755f792c2f65a233f authored by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC, committed by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC
requires them.  Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.  Fixed
shebang line to use python3 executable in the unittestgui script.
1 parent 1654040
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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