Staging
v0.5.1
https://github.com/python/cpython
Revision 6b532349d0464fa9151076d023cdea01031e6bae authored by Ezio Melotti on 24 February 2014, 18:58:31 UTC, committed by Ezio Melotti on 24 February 2014, 18:58:31 UTC
1 parent 94ee389
Raw File
Tip revision: 6b532349d0464fa9151076d023cdea01031e6bae authored by Ezio Melotti on 24 February 2014, 18:58:31 UTC
#20740: desquarify 2.
Tip revision: 6b53234
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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