Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 425680bbd2dc14ef8dc5d1928f44fc7cc43018c4 authored by Ammar Askar on 09 August 2017, 14:54:53 UTC
[2.7] bpo-31150: Wait for child process in test_forkinthread to avoid thread reaped warnings (#3042)
Tip revision: 425680b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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