Staging
v0.8.1
https://github.com/python/cpython
Revision b8de598305428608fad9d95e890293dee4938faf authored by Nick Coghlan on 28 July 2013, 11:40:20 UTC, committed by Nick Coghlan on 28 July 2013, 11:40:20 UTC
2 parent s fb15aa1 + 69e3bda
Raw File
Tip revision: b8de598305428608fad9d95e890293dee4938faf authored by Nick Coghlan on 28 July 2013, 11:40:20 UTC
Null merge from 3.3
Tip revision: b8de598
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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