Staging
v0.5.1
https://github.com/python/cpython
Revision 5b96370030707b68e8a5b787e933654297ddbc98 authored by Jeong Ukjae on 29 June 2020, 18:56:56 UTC, committed by GitHub on 29 June 2020, 18:56:56 UTC
1 parent b30ee26
Raw File
Tip revision: 5b96370030707b68e8a5b787e933654297ddbc98 authored by Jeong Ukjae on 29 June 2020, 18:56:56 UTC
Fix typo in Object/listobject.c (GH-21079)
Tip revision: 5b96370
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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