https://github.com/python/cpython
Raw File
Tip revision: 1016ef37904c7ddc16fb18d3369b2a78cf428fa4 authored by Ɓukasz Langa on 30 August 2021, 19:02:15 UTC
Python 3.9.7
Tip revision: 1016ef3
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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