mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Removed WITH_CYCLE_GC #ifdef-ery. Holes:
+ I'm not sure what to do about configure.in. Left it alone. + Ditto pyexpat.c. Fred or Martin will know what to do.
This commit is contained in:
parent
12f4f35f6e
commit
943382c8e5
12 changed files with 22 additions and 106 deletions
|
@ -12,9 +12,7 @@ extern void initaudioop(void);
|
|||
extern void initbinascii(void);
|
||||
extern void initcmath(void);
|
||||
extern void initerrno(void);
|
||||
#ifdef WITH_CYCLE_GC
|
||||
extern void initgc(void);
|
||||
#endif
|
||||
#ifndef MS_WIN64
|
||||
extern void initimageop(void);
|
||||
#endif
|
||||
|
@ -63,9 +61,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"binascii", initbinascii},
|
||||
{"cmath", initcmath},
|
||||
{"errno", initerrno},
|
||||
#ifdef WITH_CYCLE_GC
|
||||
{"gc", initgc},
|
||||
#endif
|
||||
#ifndef MS_WIN64
|
||||
{"imageop", initimageop},
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue