Revision 079d75d099f228a4261f63a94217571e05e8fa8e authored by Mariatta on 23 February 2018, 18:02:30 UTC, committed by GitHub on 23 February 2018, 18:02:30 UTC
The Show Source link in Python 3.7 docs is pointing to GitHub's master branch.
It should point to the 3.7 branch.
1 parent 74b7364
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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