Staging
v0.8.1
https://github.com/python/cpython
Revision 41db7767455a0c25cb9007d699bef07396a2a4e3 authored by Raymond Hettinger on 27 January 2009, 10:13:45 UTC, committed by Raymond Hettinger on 27 January 2009, 10:13:45 UTC
1 parent 06dc0f5
Raw File
Tip revision: 41db7767455a0c25cb9007d699bef07396a2a4e3 authored by Raymond Hettinger on 27 January 2009, 10:13:45 UTC
Issue 5021: doctest.testfile should set __name__
Tip revision: 41db776
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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