Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: d02d824e05e2cb86f4df381be18832e76e2c475f authored by Brett Cannon on 05 October 2020, 16:42:21 UTC
bpo-41584: clarify when the reflected method of a binary arithemtic operator is called (#22505)
Tip revision: d02d824
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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