diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 (GMT) |
commit | 943382c8e5009da895679798e1e740a0661fbf7e (patch) | |
tree | 8dba4a12cba89a30c2dad53ba8f11eef6d740321 /PC/config.c | |
parent | 12f4f35f6e675bbe7435069ab7516a48e82f27a9 (diff) | |
download | cpython-943382c8e5009da895679798e1e740a0661fbf7e.zip cpython-943382c8e5009da895679798e1e740a0661fbf7e.tar.gz cpython-943382c8e5009da895679798e1e740a0661fbf7e.tar.bz2 |
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.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/PC/config.c b/PC/config.c index 38c6b50..64eb962 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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 |