https://github.com/python/cpython
Raw File
Tip revision: 469ede4dbc3ef4146803424a9a3a1e16391f5013 authored by Ɓukasz Langa on 19 March 2024, 15:40:39 UTC
Python 3.8.19
Tip revision: 469ede4
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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