https://github.com/python/cpython
Raw File
Tip revision: 3f5d9d12c74787fbf3f5891835c85cc15526c86d authored by Miss Islington (bot) on 02 August 2024, 13:10:52 UTC
[3.9] gh-122133: Rework pure Python socketpair tests to avoid use of importlib.reload. (GH-122493) (GH-122508)
Tip revision: 3f5d9d1
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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