diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-08 00:41:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-08 00:41:11 (GMT) |
commit | 52c424343d625d3e795bd670aaaf542dfa63b7c7 (patch) | |
tree | 8744b09cf8766d55a1ba348258e728b9d307613e /Objects | |
parent | 1ae230aa1a0c7b51839c6d07eaaddfeef71be63b (diff) | |
download | cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.zip cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.tar.gz cpython-52c424343d625d3e795bd670aaaf542dfa63b7c7.tar.bz2 |
allow cycles throught the __dict__ slot to be cleared (closes #1469629)
Patch from Armin, test from me.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index c3822ab..e006694 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -830,8 +830,13 @@ subtype_clear(PyObject *self) assert(base); } - /* There's no need to clear the instance dict (if any); - the collector will call its tp_clear handler. */ + /* Clear the instance dict (if any), to break cycles involving only + __dict__ slots (as in the case 'self.__dict__ is self'). */ + if (type->tp_dictoffset != base->tp_dictoffset) { + PyObject **dictptr = _PyObject_GetDictPtr(self); + if (dictptr && *dictptr) + Py_CLEAR(*dictptr); + } if (baseclear) return baseclear(self); |