Staging
v0.8.1
https://github.com/python/cpython
Revision 91fd1599358a1764e805f7ccfb6a8cb2ad558b7e authored by Benjamin Peterson on 10 May 2015, 17:13:10 UTC, committed by Benjamin Peterson on 10 May 2015, 17:13:10 UTC
1 parent 72c0141
Raw File
Tip revision: 91fd1599358a1764e805f7ccfb6a8cb2ad558b7e authored by Benjamin Peterson on 10 May 2015, 17:13:10 UTC
update pydoc-topics
Tip revision: 91fd159
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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