[Python-checkins] CVS: python/dist/src PLAN.txt,1.16,1.17
Guido van Rossum
gvanrossum@users.sourceforge.net
2001年10月31日 20:11:08 -0800
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv1495
Modified Files:
PLAN.txt
Log Message:
__del__ is done -- except for the GC issue.
Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PLAN.txt,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** PLAN.txt 2001年10月26日 04:31:54 1.16
--- PLAN.txt 2001年11月01日 04:11:06 1.17
***************
*** 5,13 ****
-------------------------
- 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
--- 5,8 ----
***************
*** 38,41 ****
--- 33,41 ----
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__.