https://github.com/python/cpython
Raw File
Tip revision: 41cb07120b7792eac6413b0c56256a25e9b14e5d authored by Pablo Galindo on 05 August 2022, 14:44:15 UTC
Python 3.11.0rc1
Tip revision: 41cb071
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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