diff options
author | Guido van Rossum <guido@python.org> | 2001-11-01 21:36:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-11-01 21:36:48 (GMT) |
commit | 3133f4193763314389930378feec3fd5a4d9d20c (patch) | |
tree | 256d1be0b10265a20760b3c32adfce131cca9283 | |
parent | 573395a7a8163c38630c5262ed3910c279e4a767 (diff) | |
download | cpython-3133f4193763314389930378feec3fd5a4d9d20c.zip cpython-3133f4193763314389930378feec3fd5a4d9d20c.tar.gz cpython-3133f4193763314389930378feec3fd5a4d9d20c.tar.bz2 |
The GC issues with __del__ are now dealt with.
-rw-r--r-- | PLAN.txt | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -33,10 +33,10 @@ this.) Done (mostly) ------------- -Add __del__ handlers? I asked for a motivation on python-dev and -nobody piped up. Yet I expect it will be asked for later. *** Are -there GC issues? Doesn't the GC make an exception for classic classes -with a __del__ handler? This part is *not* yet dealt with. *** +Add __del__ handlers. I asked for a motivation on python-dev and +nobody piped up. Yet I expect it will be asked for later. There +were some GC issues, but these have now also been dealt with, thanks +to Neil Schemenauer. Assignment to __dict__. |