]> granicus.if.org Git - python/commitdiff
Enable the binascii module for Win64. It builds and passes the test suite.
authorTrent Mick <trentm@activestate.com>
Wed, 4 Oct 2000 20:57:29 +0000 (20:57 +0000)
committerTrent Mick <trentm@activestate.com>
Wed, 4 Oct 2000 20:57:29 +0000 (20:57 +0000)
(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

index e0776fa44a4bf7fa07f21c739b39c63cdc196000..6d6a79fc2c5e0b62ca8e975fb45a4515167cb02f 100644 (file)
@@ -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