https://github.com/python/cpython
Raw File
Tip revision: aaaf5174241496afca7ce4d4584570190ff972fe authored by Pablo Galindo on 11 October 2022, 11:21:06 UTC
Python 3.10.8
Tip revision: aaaf517
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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