Staging
v0.5.1
https://github.com/python/cpython
Revision 7f9ea7543ecc978a636f2b0b5b28e0820644a312 authored by Raymond Hettinger on 01 March 2015, 08:38:00 UTC, committed by Raymond Hettinger on 01 March 2015, 08:38:00 UTC
1 parent 90295b4
Raw File
Tip revision: 7f9ea7543ecc978a636f2b0b5b28e0820644a312 authored by Raymond Hettinger on 01 March 2015, 08:38:00 UTC
Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic.
Tip revision: 7f9ea75
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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