Staging
v0.5.1
https://github.com/python/cpython
Revision cde6dc9a861ec2895af9ab9ce9f62bcb1dc24540 authored by Benjamin Peterson on 03 September 2008, 21:48:20 UTC, committed by Benjamin Peterson on 03 September 2008, 21:48:20 UTC
1 parent b814d6a
Raw File
Tip revision: cde6dc9a861ec2895af9ab9ce9f62bcb1dc24540 authored by Benjamin Peterson on 03 September 2008, 21:48:20 UTC
3.0 still has the old threading names
Tip revision: cde6dc9
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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