From b466f8facf9ae8e893c30b7a7a76a8333b59d5c7 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sat, 25 Jun 2016 03:06:58 +0000 Subject: Remove duplicate AF_INET6 addition --- Modules/socketmodule.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 175e82f..f7fe218 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -6247,9 +6247,6 @@ PyInit__socket(void) PyModule_AddIntMacro(m, AF_UNSPEC); #endif PyModule_AddIntMacro(m, AF_INET); -#ifdef AF_INET6 - PyModule_AddIntMacro(m, AF_INET6); -#endif /* AF_INET6 */ #if defined(AF_UNIX) PyModule_AddIntMacro(m, AF_UNIX); #endif /* AF_UNIX */ -- cgit v0.12