https://github.com/python/cpython
Raw File
Tip revision: b4e48a444ea02921ce4b701fe165e6cfd4cf5845 authored by Pablo Galindo on 06 June 2023, 22:29:37 UTC
Python 3.10.12
Tip revision: b4e48a4
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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