Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b87d6000f38e6158bbe1d9df5c6136f27aeace12 authored by Ned Deily on 15 August 2016, 20:21:29 UTC
Version bump for 3.6.0a4
Tip revision: b87d600
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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