Staging
v0.5.1
https://github.com/python/cpython
Revision c81402527a274dffcb4ad09e9e0e600e2182b2cc authored by Georg Brandl on 09 February 2014, 07:43:05 UTC, committed by Georg Brandl on 09 February 2014, 07:43:05 UTC
1 parent 87203d3
Raw File
Tip revision: c81402527a274dffcb4ad09e9e0e600e2182b2cc authored by Georg Brandl on 09 February 2014, 07:43:05 UTC
Bump to 3.3.4 final
Tip revision: c814025
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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