https://github.com/python/cpython
Raw File
Tip revision: f37715396786fd4055f5891aa16774ede26392ff authored by Pablo Galindo on 06 June 2022, 11:52:40 UTC
Python 3.10.5
Tip revision: f377153
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
    return PLATFORM;
}
back to top