diff options
author | Guido van Rossum <guido@python.org> | 2001-11-01 04:11:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-11-01 04:11:06 (GMT) |
commit | b73efee62eaf8ba2733973396fbbdf0237631532 (patch) | |
tree | 0f942eba7d02bfda4f79e824692f64942d94f199 /PLAN.txt | |
parent | e8c40cb72245ac7271e61c1b40f5812a8f041fcf (diff) | |
download | cpython-b73efee62eaf8ba2733973396fbbdf0237631532.zip cpython-b73efee62eaf8ba2733973396fbbdf0237631532.tar.gz cpython-b73efee62eaf8ba2733973396fbbdf0237631532.tar.bz2 |
__del__ is done -- except for the GC issue.
Diffstat (limited to 'PLAN.txt')
-rw-r--r-- | PLAN.txt | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,11 +4,6 @@ Project: core implementation Still to do (by priority) ------------------------- -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? - Support mixed multiple inheritance from classic and new-style classes? That would be cool and make new-style classes much more usable (it would remove most of the reasons not to use them for new projects). @@ -38,6 +33,11 @@ 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. *** + Assignment to __dict__. More performance work -- one particular test, test_descr.inherits(), |