Staging
v0.5.1
https://github.com/python/cpython
Revision f237c771c688f0af9d1f6559f998ad08d941b204 authored by Tim Peters on 21 November 2003, 22:21:19 UTC, committed by Tim Peters on 21 November 2003, 22:21:19 UTC
1 parent 834e2e9
Raw File
Tip revision: f237c771c688f0af9d1f6559f998ad08d941b204 authored by Tim Peters on 21 November 2003, 22:21:19 UTC
More words: gave more motivation, and added cautions about the special
Tip revision: f237c77
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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