Staging
v0.5.1
https://github.com/python/cpython
Revision 58eb605ca3735b9d9b608de1a1ffeec14c516e40 authored by Raymond Hettinger on 24 June 2014, 01:03:21 UTC, committed by Raymond Hettinger on 24 June 2014, 01:03:21 UTC
1 parent c459755
Raw File
Tip revision: 58eb605ca3735b9d9b608de1a1ffeec14c516e40 authored by Raymond Hettinger on 24 June 2014, 01:03:21 UTC
Issue #11974: Add tutorial section on class and instance variables
Tip revision: 58eb605
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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