Python-2.7.3/Python/getplatform.c

No issues found

 1 #include "Python.h"
 2 
 3 #ifndef PLATFORM
 4 #define PLATFORM "unknown"
 5 #endif
 6 
 7 const char *
 8 Py_GetPlatform(void)
 9 {
10 	return PLATFORM;
11 }