]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
AFAICT pydoc/inspect do the right thing again.
authorGuido van Rossum <guido@python.org>
Thu, 20 Sep 2001 05:27:24 +0000 (05:27 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 20 Sep 2001 05:27:24 +0000 (05:27 +0000)
PLAN.txt

index 9a1c9dd0601ad19555c743e1b0e50e8a22d52702..fc07e3fbcceee477d42c60cbfaf769e6519ca784 100644 (file)
--- a/PLAN.txt
+++ b/PLAN.txt
@@ -31,8 +31,6 @@ 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
@@ -41,6 +39,9 @@ a new name for new-style __getattr__?
 Done (mostly)
 -------------
 
+Make inspect and pydoc do the right thing for new-style classes.  ***
+done ***
+
 Do binary operators properly.  nb_add should try to call self.__add__
 and other.__radd__.  I think I'll exclude base types that define any
 binary operator without setting the CHECKTYPES flag.  *** This is