Staging
v0.5.1
https://github.com/python/cpython
Revision b0a27055320f4dfb60a24bdb3c825010fce570dc authored by Ned Deily on 10 August 2020, 07:04:13 UTC, committed by GitHub on 10 August 2020, 07:04:13 UTC
1 parent a9fa663
Raw File
Tip revision: b0a27055320f4dfb60a24bdb3c825010fce570dc authored by Ned Deily on 10 August 2020, 07:04:13 UTC
Update macOS installer welcome files for 3.9.0rc. (GH-21804)
Tip revision: b0a2705
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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