Staging
v0.5.1
https://github.com/python/cpython
Revision 69a64d3fc21f173211ee2139a718bc8869abf2f1 authored by Benjamin Peterson on 25 November 2014, 21:43:58 UTC, committed by Benjamin Peterson on 25 November 2014, 21:43:58 UTC
1 parent f671de4
Raw File
Tip revision: 69a64d3fc21f173211ee2139a718bc8869abf2f1 authored by Benjamin Peterson on 25 November 2014, 21:43:58 UTC
handle errors without a reason attribute
Tip revision: 69a64d3
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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