Hum, test skipping when the URL isn't reachable hadn't been applied to trunk.
[python.git] / Python / getplatform.c
blob68991402b5b0001cfbf52a9394baa3340f52fe88
2 #include "Python.h"
4 #ifndef PLATFORM
5 #define PLATFORM "unknown"
6 #endif
8 const char *
9 Py_GetPlatform(void)
11 return PLATFORM;