Staging
v0.5.1
https://github.com/python/cpython
Revision 8da6f1b66811f6cf680dd0bd5762ff051e42d034 authored by Georg Brandl on 06 March 2007, 11:52:33 UTC, committed by Georg Brandl on 06 March 2007, 11:52:33 UTC
1 parent 0520e03
Raw File
Tip revision: 8da6f1b66811f6cf680dd0bd5762ff051e42d034 authored by Georg Brandl on 06 March 2007, 11:52:33 UTC
Patch #1672481: fix bug in idlelib.MultiCall.
Tip revision: 8da6f1b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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