https://github.com/python/cpython
Raw File
Tip revision: 882f62bd93fcd5775068c3b3d1e5ce62f2feaba3 authored by Ɓukasz Langa on 19 March 2024, 15:48:02 UTC
Python 3.9.19
Tip revision: 882f62b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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