Staging
v0.8.1
https://github.com/python/cpython
Revision 43cb4b79d92d85b90166052c0f6fad70075f5bd4 authored by Benjamin Peterson on 23 March 2013, 15:15:25 UTC, committed by Benjamin Peterson on 23 March 2013, 15:15:25 UTC
1 parent 71e2d2e
Raw File
Tip revision: 43cb4b79d92d85b90166052c0f6fad70075f5bd4 authored by Benjamin Peterson on 23 March 2013, 15:15:25 UTC
update pydoc topics
Tip revision: 43cb4b7
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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