Staging
v0.5.1
https://github.com/python/cpython
Revision ab357ecf7f5b65374eb967281a84965f05e5179c authored by Fred Drake on 02 March 2001, 18:57:05 UTC, committed by Fred Drake on 02 March 2001, 18:57:05 UTC
1 parent 0539bfa
Raw File
Tip revision: ab357ecf7f5b65374eb967281a84965f05e5179c authored by Fred Drake on 02 March 2001, 18:57:05 UTC
Label classes and exceptions explicitly in the documentation (for their
Tip revision: ab357ec
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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