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 /Objects/classobject.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 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 88bd20c..90a0e22 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -678,9 +678,6 @@ instance_dealloc(register PyInstanceObject *inst) /* compensate for increment in _Py_ForgetReference */ inst->ob_type->tp_frees--; #endif -#ifndef WITH_CYCLE_GC - inst->ob_type = NULL; -#endif #endif Py_DECREF(inst->in_class); Py_XDECREF(inst->in_dict); |