https://github.com/python/cpython
Raw File
Tip revision: 3de092b82f5aa02fa293cd654c2ab26556ecf703 authored by Rafael Fontenelle on 20 July 2024, 03:46:57 UTC
Docs: Fix a typo in What's New in Python 3.13 (#122051)
Tip revision: 3de092b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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