Staging
v0.5.1
https://github.com/python/cpython
Revision 0c280c0127c3ec9d6656366274ac6e03465fa994 authored by Martin v. Löwis on 15 September 2008, 01:30:21 UTC, committed by Martin v. Löwis on 15 September 2008, 01:30:21 UTC
1 parent b080256
Raw File
Tip revision: 0c280c0127c3ec9d6656366274ac6e03465fa994 authored by Martin v. Löwis on 15 September 2008, 01:30:21 UTC
Fix grammar.
Tip revision: 0c280c0
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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