Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cec00a7d87e7280b30eaef2e2567ebd0da5b8b9c authored by Ned Deily on 16 May 2016, 20:03:51 UTC
Version bump for 3.6.0a1
Tip revision: cec00a7
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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