diff options
author | Guido van Rossum <guido@python.org> | 2001-09-20 05:27:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-20 05:27:24 (GMT) |
commit | ed8fa72f34fb69a3776d64d49d3527e67f7cd328 (patch) | |
tree | e3bf269aef53f52dfeb5df25dbc18c24529d4fac /PLAN.txt | |
parent | 536d2262f730dfd0d48ed541d834dd01f7d95562 (diff) | |
download | cpython-ed8fa72f34fb69a3776d64d49d3527e67f7cd328.zip cpython-ed8fa72f34fb69a3776d64d49d3527e67f7cd328.tar.gz cpython-ed8fa72f34fb69a3776d64d49d3527e67f7cd328.tar.bz2 |
AFAICT pydoc/inspect do the right thing again.
Diffstat (limited to 'PLAN.txt')
-rw-r--r-- | PLAN.txt | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |