Staging
v0.5.1
https://github.com/python/cpython
Revision 41f0ef6abbd304409c55612a08788cdd59fbc8a3 authored by Pablo Galindo on 23 January 2020, 01:03:04 UTC, committed by Miss Islington (bot) on 23 January 2020, 01:03:04 UTC


https://bugs.python.org/issue39427



Automerge-Triggered-By: @pablogsal
1 parent 9b6fec4
Raw File
Tip revision: 41f0ef6abbd304409c55612a08788cdd59fbc8a3 authored by Pablo Galindo on 23 January 2020, 01:03:04 UTC
bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131)
Tip revision: 41f0ef6
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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