Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 01a4623f43e932674bc9a6abc1ba4af8225c33f8 authored by Thomas Wouters on 27 June 2001, 13:12:47 UTC
Backport Fred's checkin 2.51:
Tip revision: 01a4623
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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