Staging
v0.5.1
https://github.com/python/cpython
Revision 3f61d61b353c08525348a018294fa05bba1bdfe2 authored by Gregory P. Smith on 04 May 2009, 00:45:33 UTC, committed by Gregory P. Smith on 04 May 2009, 00:45:33 UTC
already committed issue4751 support in py3k r68411.
1 parent c1651a0
Raw File
Tip revision: 3f61d61b353c08525348a018294fa05bba1bdfe2 authored by Gregory P. Smith on 04 May 2009, 00:45:33 UTC
Merge refactoring I did when committing r72267 to trunk into the
Tip revision: 3f61d61
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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