https://github.com/python/cpython
Raw File
Tip revision: 558b517bb571999ef36123635e0245d083a28305 authored by Miss Islington (bot) on 05 April 2024, 15:33:52 UTC
[3.12] gh-117074: Update Traversable.joinpath docs to the 3.11+ protocol (GH-117113) (GH-117571)
Tip revision: 558b517
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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