Commit 50ef9609 authored by Trent Mick's avatar Trent Mick

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.)
parent 1b7d6ee4
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment