diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-09-06 11:31:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 11:31:09 (GMT) |
commit | bcaac8188b1a1e67d2cc155609f0f883f036df33 (patch) | |
tree | dfd3e7c2381237c143633f934c652555e6fa4575 /Python/pytime.c | |
parent | 3fc499bca18454b9f432b9b0106cab662bfeb549 (diff) | |
download | cpython-bcaac8188b1a1e67d2cc155609f0f883f036df33.zip cpython-bcaac8188b1a1e67d2cc155609f0f883f036df33.tar.gz cpython-bcaac8188b1a1e67d2cc155609f0f883f036df33.tar.bz2 |
Revert "pytime: include winsock2, so we can have a complete timeval type (#3377)" (#3383)
This reverts commit 833860615bedfd2484ac0623d6f01ff0578ba09f, as it broke Windows builds.
Diffstat (limited to 'Python/pytime.c')
-rw-r--r-- | Python/pytime.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pytime.c b/Python/pytime.c index b7d6e84..8979adc 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -1,7 +1,6 @@ #include "Python.h" #ifdef MS_WINDOWS #include <windows.h> -#include <winsock2.h> /* struct timeval */ #endif #if defined(__APPLE__) |