Staging
v0.5.1
https://github.com/python/cpython
Revision 502d89ed1518687861563293cb761d268321fa4a authored by Benjamin Peterson on 11 June 2008, 22:55:41 UTC, committed by Benjamin Peterson on 11 June 2008, 22:55:41 UTC
1 parent cc31306
Raw File
Tip revision: 502d89ed1518687861563293cb761d268321fa4a authored by Benjamin Peterson on 11 June 2008, 22:55:41 UTC
fix test_ssl
Tip revision: 502d89e
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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