From c85eb0bd4b3cfaa6a110d0d7d40553f3e02d02af Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Wed, 4 Oct 2000 20:57:29 +0000 Subject: [PATCH] Enable the binascii module for Win64. It builds and passes the test suite. (I had explicitly disabled it a while ago, possibly unecessarily, along with rgbimg, audioop, and imageop, which are advertised as "not for 64-bit platforms.) --- PC/config.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PC/config.c b/PC/config.c index e0776fa44a..6d6a79fc2c 100644 --- a/PC/config.c +++ b/PC/config.c @@ -8,8 +8,8 @@ extern void initarray(void); #ifndef MS_WIN64 extern void initaudioop(void); -extern void initbinascii(void); #endif +extern void initbinascii(void); extern void initcmath(void); extern void initerrno(void); #ifdef WITH_CYCLE_GC @@ -56,9 +56,7 @@ struct _inittab _PyImport_Inittab[] = { {"audioop", initaudioop}, #endif #endif -#ifndef MS_WIN64 {"binascii", initbinascii}, -#endif {"cmath", initcmath}, {"errno", initerrno}, #ifdef WITH_CYCLE_GC -- 2.50.1