diff options
author | Guido van Rossum <guido@python.org> | 2000-06-30 20:31:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-06-30 20:31:50 (GMT) |
commit | 47674029e16b45e0985dbaa2cf6c7e0455acf0e3 (patch) | |
tree | 80e285270ce7487609b6ae7c04cf2c9d9e09c595 /PC | |
parent | b6e54adb1af7215a5c17dd7232aa7b11e7b1a1a8 (diff) | |
download | cpython-47674029e16b45e0985dbaa2cf6c7e0455acf0e3.zip cpython-47674029e16b45e0985dbaa2cf6c7e0455acf0e3.tar.gz cpython-47674029e16b45e0985dbaa2cf6c7e0455acf0e3.tar.bz2 |
As Neil Schemenauer points out, WITH_CYCLE_GC should be uncommented if
we want to have GC enabled in the beta.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/config.h b/PC/config.h index 16f82e1..850af58 100644 --- a/PC/config.h +++ b/PC/config.h @@ -452,7 +452,7 @@ typedef long intptr_t; /* #define WITH_READLINE 1 */ /* Define if you want cycle garbage collection */ -/* #define WITH_CYCLE_GC 1 */ +#define WITH_CYCLE_GC 1 /* Define if you have clock. */ /* #define HAVE_CLOCK */ |