diff options
author | Erik Bray <erik.m.bray@gmail.com> | 2017-10-27 14:27:06 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-10-27 05:27:06 -0700 |
commit | 03eb11f0b354751248b427455b89e9340cfd2b47 (patch) | |
tree | 1f3fc3181a312d1df927b86346032fe404dc4e07 /Modules/socketmodule.c | |
parent | 843ea47a034307c7b1ca642dd70f0269255b289a (diff) | |
download | cpython-git-03eb11f0b354751248b427455b89e9340cfd2b47.tar.gz |
bpo-16135: Cleanup: Code rot left over from OS/2 support (GH-4147)
Remove dangling references to PYCC_VACPP that are not relelvant
since removal of OS/2 support.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 6f114efe31..643148e53f 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -226,13 +226,6 @@ http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82& # include "pythread.h" #endif -#if defined(PYCC_VACPP) -# include <types.h> -# include <io.h> -# include <sys/ioctl.h> -# include <utils.h> -# include <ctype.h> -#endif #if defined(__APPLE__) || defined(__CYGWIN__) # include <sys/ioctl.h> |