mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
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.)
This commit is contained in:
parent
d68d0a6f5a
commit
c85eb0bd4b
1 changed files with 1 additions and 3 deletions
|
@ -8,8 +8,8 @@
|
||||||
extern void initarray(void);
|
extern void initarray(void);
|
||||||
#ifndef MS_WIN64
|
#ifndef MS_WIN64
|
||||||
extern void initaudioop(void);
|
extern void initaudioop(void);
|
||||||
extern void initbinascii(void);
|
|
||||||
#endif
|
#endif
|
||||||
|
extern void initbinascii(void);
|
||||||
extern void initcmath(void);
|
extern void initcmath(void);
|
||||||
extern void initerrno(void);
|
extern void initerrno(void);
|
||||||
#ifdef WITH_CYCLE_GC
|
#ifdef WITH_CYCLE_GC
|
||||||
|
@ -56,9 +56,7 @@ struct _inittab _PyImport_Inittab[] = {
|
||||||
{"audioop", initaudioop},
|
{"audioop", initaudioop},
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifndef MS_WIN64
|
|
||||||
{"binascii", initbinascii},
|
{"binascii", initbinascii},
|
||||||
#endif
|
|
||||||
{"cmath", initcmath},
|
{"cmath", initcmath},
|
||||||
{"errno", initerrno},
|
{"errno", initerrno},
|
||||||
#ifdef WITH_CYCLE_GC
|
#ifdef WITH_CYCLE_GC
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue