https://github.com/python/cpython
Raw File
Tip revision: 7dd8c581c2109b304c24b7a42a38cbf73d089152 authored by Serhiy Storchaka on 28 October 2018, 11:41:26 UTC
bpo-35054: Add yet more index entries for symbols. (GH-10121)
Tip revision: 7dd8c58
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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