Staging
v0.5.1
https://github.com/python/cpython
Revision b4fb6e4d27b56c2119bd1dad83afce874e34a72a authored by Guido van Rossum on 14 June 2008, 20:20:24 UTC, committed by Guido van Rossum on 14 June 2008, 20:20:24 UTC
1 parent 973124f
Raw File
Tip revision: b4fb6e4d27b56c2119bd1dad83afce874e34a72a authored by Guido van Rossum on 14 June 2008, 20:20:24 UTC
Implicit exception chaining via __context__ (PEP 3134).
Tip revision: b4fb6e4
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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