Staging
v0.5.1
https://github.com/python/cpython
Revision b34d0ed403f5bc4d42d2333a0ba462791772d877 authored by Jack Jansen on 01 March 2001, 23:17:43 UTC, committed by Jack Jansen on 01 March 2001, 23:17:43 UTC
1 parent 1b45c73
Raw File
Tip revision: b34d0ed403f5bc4d42d2333a0ba462791772d877 authored by Jack Jansen on 01 March 2001, 23:17:43 UTC
Removed some stuff that shouldn't be in the dev distribution.
Tip revision: b34d0ed
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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