https://github.com/python/cpython
Raw File
Tip revision: e2b4e4bab90b69fbd3614fc9ce5755edfe184297 authored by Pablo Galindo on 05 November 2021, 19:02:44 UTC
Python 3.11.0a2
Tip revision: e2b4e4b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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