Staging
v0.8.1
https://github.com/python/cpython
Revision ce29e87e6fc64269392c807a33e268ca2358c3b3 authored by Benjamin Peterson on 08 April 2015, 15:11:00 UTC, committed by Benjamin Peterson on 08 April 2015, 15:11:00 UTC
1 parent c7d957f
Raw File
Tip revision: ce29e87e6fc64269392c807a33e268ca2358c3b3 authored by Benjamin Peterson on 08 April 2015, 15:11:00 UTC
actually ssl3 is just completely broken
Tip revision: ce29e87
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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