Staging
v0.5.1
https://github.com/python/cpython
Revision 343cb8a768c4e223f7eb19d0b858e5c8af8030c2 authored by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC, committed by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC
1 parent 4c11f60
Raw File
Tip revision: 343cb8a768c4e223f7eb19d0b858e5c8af8030c2 authored by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC
Bug #1014770: apply some rest-foo and fix some docutils errors.
Tip revision: 343cb8a
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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