diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 4 | ||||
-rw-r--r-- | PC/pyconfig.h | 3 |
2 files changed, 0 insertions, 7 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 diff --git a/PC/pyconfig.h b/PC/pyconfig.h index ac043eb..547a567 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -499,9 +499,6 @@ typedef int pid_t; #define HAVE_USABLE_WCHAR_T #endif -/* Define if you want cycle garbage collection */ -#define WITH_CYCLE_GC 1 - /* Use Python's own small-block memory-allocator. */ #define WITH_PYMALLOC 1 |