https://github.com/python/cpython
Raw File
Tip revision: fa7a6f23036537567592647d15f043722c7144ad authored by Pablo Galindo on 04 December 2023, 17:54:29 UTC
Python 3.11.7
Tip revision: fa7a6f2
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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