Staging
v0.5.1
https://github.com/python/cpython
Revision 445844993b68f102241a600636b0d69394db1c7b authored by Benjamin Peterson on 03 December 2016, 19:01:50 UTC, committed by Benjamin Peterson on 03 December 2016, 19:01:50 UTC
1 parent 32b3734
Raw File
Tip revision: 445844993b68f102241a600636b0d69394db1c7b authored by Benjamin Peterson on 03 December 2016, 19:01:50 UTC
fix refleak in the shift-by-zero case (#27870)
Tip revision: 4458449
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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