https://github.com/python/cpython
Raw File
Tip revision: 7e2815419663a2f82abf6c5e1f848fd1de7c8033 authored by Ɓukasz Langa on 11 October 2022, 14:48:37 UTC
Python 3.9.15
Tip revision: 7e28154
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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