Staging
v0.5.1
https://github.com/python/cpython
Revision 0fbcf6945584b1b2a7564680de50c062fc4dce1c authored by Benjamin Peterson on 11 June 2008, 17:27:50 UTC, committed by Benjamin Peterson on 11 June 2008, 17:27:50 UTC
1 parent 32c2e41
Raw File
Tip revision: 0fbcf6945584b1b2a7564680de50c062fc4dce1c authored by Benjamin Peterson on 11 June 2008, 17:27:50 UTC
give the threading API PEP 8 names
Tip revision: 0fbcf69
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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