ref: 31f52ee9c1e83a5592d546f0ae6ceef240a5e32c dir: /sys/src/cmd/python/Python/getplatform.c/
#include "Python.h" #ifndef PLATFORM #define PLATFORM "plan9" #endif const char * Py_GetPlatform(void) { return PLATFORM; }