]> granicus.if.org Git - python/commitdiff
Add resolution of __new__ story sequel.
authorGuido van Rossum <guido@python.org>
Thu, 9 Aug 2001 20:25:58 +0000 (20:25 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 9 Aug 2001 20:25:58 +0000 (20:25 +0000)
PLAN.txt

index a0d2bea8fb0cff7b9c3a7a75f5496aa3e6507410..23f48948c68a156ca857ef2f032368516f2eb2c4 100644 (file)
--- a/PLAN.txt
+++ b/PLAN.txt
@@ -99,6 +99,10 @@ we try to use this for some, eh, interesting types such as tuples. ***
             def __new__(cls, *args):
                 "How do I call the default __new__ implementation???"
 
+    This was resolved nicely by putting object.__new__ back but not
+    inheriting __new__ from object when the subtype is a built-in or
+    extension type.
+
 More -- I'm sure new issues will crop up as we go.