DEBSOURCES
Skip Quicknav
sources / python3.14 / 3.14.0~rc1-1 / Python / getplatform.c
123456789101112
#include "Python.h" #ifndef PLATFORM #define PLATFORM "unknown" #endif const char * Py_GetPlatform(void) { return PLATFORM; }