Staging
v0.8.1
https://github.com/python/cpython
Revision e434b3b68114a271d615848515f96de135e501b3 authored by Raymond Hettinger on 15 December 2010, 19:20:01 UTC, committed by Raymond Hettinger on 15 December 2010, 19:20:01 UTC
1 parent d00862a
Raw File
Tip revision: e434b3b68114a271d615848515f96de135e501b3 authored by Raymond Hettinger on 15 December 2010, 19:20:01 UTC
Add intro to the changed modules section.
Tip revision: e434b3b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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