Staging
v0.5.1
https://github.com/python/cpython
Revision fcfb324e817c4362fb83d905d65968cf94e0d68a authored by Charles-François Natali on 31 August 2013, 12:40:49 UTC, committed by Charles-François Natali on 31 August 2013, 12:40:49 UTC
1 parent 79a53ea
Raw File
Tip revision: fcfb324e817c4362fb83d905d65968cf94e0d68a authored by Charles-François Natali on 31 August 2013, 12:40:49 UTC
Use the recent support.HOSTv6 addition.
Tip revision: fcfb324
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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