Staging
v0.5.1
https://github.com/python/cpython
Revision ffadbb7ee7ff770d818607f6c03ef6c37a177a6f authored by Serhiy Storchaka on 13 February 2014, 08:45:14 UTC, committed by Serhiy Storchaka on 13 February 2014, 08:45:14 UTC
1 parent dbb1019
Raw File
Tip revision: ffadbb7ee7ff770d818607f6c03ef6c37a177a6f authored by Serhiy Storchaka on 13 February 2014, 08:45:14 UTC
Fixed typo in previous commit (issue #6815).
Tip revision: ffadbb7
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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