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