Staging
v0.5.1
https://github.com/python/cpython
Revision eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC, committed by GitHub on 08 December 2020, 23:18:37 UTC
1 parent fe6e5e7
Raw File
Tip revision: eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC
bpo-41443: Add more attribute checking in test_posix (GH-21688)
Tip revision: eb7594f
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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