[Python-checkins] CVS: python/dist/src PLAN.txt,1.3,1.4
Guido van Rossum
gvanrossum@users.sourceforge.net
Wed, 08 Aug 2001 09:57:45 -0700
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv30310
Modified Files:
PLAN.txt
Log Message:
Added note to self about __new__ issue.
Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PLAN.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PLAN.txt 2001/08/02 22:06:35 1.3
--- PLAN.txt 2001/08/08 16:57:43 1.4
***************
*** 90,93 ****
--- 90,102 ----
we try to use this for some, eh, interesting types such as tuples. ***
+ There was a sequel to the __new__ story (see checkins). There
+ still is a problem: object.__new__ now no longer exists, because
+ it was inherited by certain extension types that could break. But
+ now when I write
+
+ class C(object):
+ def __new__(cls, *args):
+ "How do I call the default __new__ implementation???"
+
More -- I'm sure new issues will crop up as we go.