[Python-checkins] CVS: python/dist/src PLAN.txt,1.7,1.8
Guido van Rossum
gvanrossum@users.sourceforge.net
Sun, 09 Sep 2001 19:40:28 -0700
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv375
Modified Files:
PLAN.txt
Log Message:
Add a few more todo items.
Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PLAN.txt,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** PLAN.txt 2001/08/30 21:18:04 1.7
--- PLAN.txt 2001/09/10 02:40:26 1.8
***************
*** 22,30 ****
implemented.
! Allow __class__ assignment.
Make __dynamic__ the default.
Add __del__ handlers.
Done (mostly)
--- 22,41 ----
implemented.
! Allow __class__ assignment (and __bases__ and __dict__?).
Make __dynamic__ the default.
Add __del__ handlers.
+
+ Add __coerce__?
+
+ Support pickling (via __reduce__?)
+
+ Make inspect and pydoc do the right thing for new-style classes.
+
+ Support mixed multiple inheritance from classic and new-style classes?
+
+ Change __getattr__ to be more like classic __getattr__, and introduce
+ a new name for new-style __getattr__?
Done (mostly)