Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 41c56b5ea1f2bdf294067506f4b1b91a8885d874 authored by Andrew MacIntyre on 22 September 2008, 14:23:45 UTC
build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files
Tip revision: 41c56b5
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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