Staging
v0.5.1
https://github.com/python/cpython
Revision a7c650934d8e3b62d7e0b2aeaf30fd486922d484 authored by Tim Peters on 01 August 2004, 23:26:05 UTC, committed by Tim Peters on 01 August 2004, 23:26:05 UTC
1 parent 86c7d2f
Raw File
Tip revision: a7c650934d8e3b62d7e0b2aeaf30fd486922d484 authored by Tim Peters on 01 August 2004, 23:26:05 UTC
lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were
Tip revision: a7c6509
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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