summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-09-06 22:45:25 (GMT)
committerGitHub <noreply@github.com>2017-09-06 22:45:25 (GMT)
commit49ce74efe845a8a91939ff3990a5f233262d3e1f (patch)
tree1a8cc8d4b43bdc3fe04d9fc4810a5830d14d43fe /PC/config.c
parenteffc12f8e9e20d0951d2ba5883587666bd8218e3 (diff)
downloadcpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.zip
cpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.tar.gz
cpython-49ce74efe845a8a91939ff3990a5f233262d3e1f.tar.bz2
Remove all mention of Windows IA-64 support (GH-3389)
It was mostly removed long ago.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/PC/config.c b/PC/config.c
index 43d9e20..f5aa332 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -6,9 +6,7 @@
#include "Python.h"
extern PyObject* PyInit_array(void);
-#ifndef MS_WINI64
extern PyObject* PyInit_audioop(void);
-#endif
extern PyObject* PyInit_binascii(void);
extern PyObject* PyInit_cmath(void);
extern PyObject* PyInit_errno(void);
@@ -80,11 +78,7 @@ struct _inittab _PyImport_Inittab[] = {
{"array", PyInit_array},
{"_ast", PyInit__ast},
-#ifdef MS_WINDOWS
-#ifndef MS_WINI64
{"audioop", PyInit_audioop},
-#endif
-#endif
{"binascii", PyInit_binascii},
{"cmath", PyInit_cmath},
{"errno", PyInit_errno},