Staging
v0.5.1
https://github.com/python/cpython
Revision 0ace326ed2ec73dfa515c89ad06fcddd6fafa4ce authored by Martin v. Löwis on 05 September 2001, 14:38:48 UTC, committed by Martin v. Löwis on 05 September 2001, 14:38:48 UTC
1 parent 36546db
Raw File
Tip revision: 0ace326ed2ec73dfa515c89ad06fcddd6fafa4ce authored by Martin v. Löwis on 05 September 2001, 14:38:48 UTC
Patch #453627: Adds a list of tests that are expected to be skipped for UnixWare 7.x systems.
Tip revision: 0ace326
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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