Staging
v0.8.1
https://github.com/python/cpython
Revision 463c3f3eefbb706f4da1f17eb25a83968b636094 authored by Larry Hastings on 12 June 2016, 05:24:03 UTC, committed by Larry Hastings on 12 June 2016, 05:24:03 UTC
1 parent 6e77ebe
Raw File
Tip revision: 463c3f3eefbb706f4da1f17eb25a83968b636094 authored by Larry Hastings on 12 June 2016, 05:24:03 UTC
Release bump for 3.4.5rc1.
Tip revision: 463c3f3
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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