[Python-checkins] CVS: python/nondist/peps pep-0253.txt,1.14,1.15

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 06 Sep 2001 15:04:58 -0700


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv16066

Modified Files:
	pep-0253.txt 
Log Message:
Add another way to look at the motivation for the new MRO.


Index: pep-0253.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0253.txt,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** pep-0253.txt	2001/07/18 13:44:57	1.14
--- pep-0253.txt	2001/09/06 22:04:56	1.15
***************
*** 872,875 ****
--- 872,880 ----
      change in method resolution order.
  
+     XXX Another way to explain the motivation for the new MRO, due to
+     Damian Conway: you never use the method defined in a base class if
+     it is defined in a derived class that you haven't explored yet
+     (using the old search order).
+ 
  
  XXX To be done