Staging
v0.8.1
https://github.com/python/cpython
Revision 4221c74cb00fa00ce8b4a6015c59a233246bf1e9 authored by Gregory P. Smith on 02 March 2009, 05:04:04 UTC, committed by Gregory P. Smith on 02 March 2009, 05:04:04 UTC
1 parent 85685e9
Raw File
Tip revision: 4221c74cb00fa00ce8b4a6015c59a233246bf1e9 authored by Gregory P. Smith on 02 March 2009, 05:04:04 UTC
Merged r70088 from trunk (re documentation update)
Tip revision: 4221c74
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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