[Python-checkins] CVS: python/dist/src PLAN.txt,1.1.2.10,1.1.2.11

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 06 Jul 2001 12:08:19 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv1751

Modified Files:
      Tag: descr-branch
	PLAN.txt 
Log Message:
Mark more stuff done.


Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Attic/PLAN.txt,v
retrieving revision 1.1.2.10
retrieving revision 1.1.2.11
diff -C2 -r1.1.2.10 -r1.1.2.11
*** PLAN.txt	2001/07/06 18:53:47	1.1.2.10
--- PLAN.txt	2001/07/06 19:08:17	1.1.2.11
***************
*** 76,80 ****
  defaults?  *** Done, really. ***
  
! Add error checking to the MRO calculation.
  
  Make __new__ overridable through a Python class method (!).  Make more
--- 76,80 ----
  defaults?  *** Done, really. ***
  
! Add error checking to the MRO calculation.  *** Done. ***
  
  Make __new__ overridable through a Python class method (!).  Make more
***************
*** 85,92 ****
  -- you must use static methods.  So I've implemented those too.  I've
  hooked up __new__ in the right places, so the first part of this is
! now done (still to do the other construction methods -- unclear that
! we really need any though).  I expect that some warts will only be
! really debugged when we try to use this for some, eh, interesting
! types such as tuples. ***
  
  More -- I'm sure new issues will crop up as we go.
--- 85,92 ----
  -- you must use static methods.  So I've implemented those too.  I've
  hooked up __new__ in the right places, so the first part of this is
! now done.  I've also exported the MRO calculation and made it
! overridable, as metamethod mro().  I believe that closes this topic
! for now.  I expect that some warts will only be really debugged when
! we try to use this for some, eh, interesting types such as tuples. ***
  
  More -- I'm sure new issues will crop up as we go.