Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2b2ac3a1e80ef2139e0f5f3cf066705af5b557a2 authored by Moshe Zadka on 30 March 2001, 17:20:58 UTC
#126161 and 123634 -- Unicode strings could not be pickled correctly.
Tip revision: 2b2ac3a
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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