https://github.com/python/cpython
Raw File
Tip revision: 1a79785e3e8fea80bcf6a800b45a04e06c787480 authored by Ɓukasz Langa on 19 February 2021, 12:31:44 UTC
Python 3.9.2
Tip revision: 1a79785
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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