Staging
v0.8.1
https://github.com/python/cpython
Revision 9163c473dc0e025bc3b922a94edc82d81667a05d authored by Antoine Pitrou on 09 July 2011, 00:31:24 UTC, committed by Antoine Pitrou on 09 July 2011, 00:31:24 UTC
failure in name resolution.

Should fix a buildbot failure.
1 parent 3aba498
Raw File
Tip revision: 9163c473dc0e025bc3b922a94edc82d81667a05d authored by Antoine Pitrou on 09 July 2011, 00:31:24 UTC
Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
Tip revision: 9163c47
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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