Staging
v0.5.1
https://github.com/python/cpython
Revision 2740fcc7bbe3e09aa9bed820c73c886780fda59f authored by Larry Hastings on 23 January 2018, 12:35:33 UTC, committed by Larry Hastings on 23 January 2018, 12:35:33 UTC
1 parent 604fb62
Raw File
Tip revision: 2740fcc7bbe3e09aa9bed820c73c886780fda59f authored by Larry Hastings on 23 January 2018, 12:35:33 UTC
Bump version and copyright year for 3.5.5rc1.
Tip revision: 2740fcc
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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