DEBSOURCES
Skip Quicknav
sources / pypy3 / 7.3.20%2Bdfsg-1 / cpython27 / Python / getplatform.c
123456789101112
#include "Python.h" #ifndef PLATFORM #define PLATFORM "unknown" #endif const char * Py_GetPlatform(void) { return PLATFORM; }