[Python-checkins] CVS: python/nondist/peps pep-0207.txt,1.9,1.10

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 05 Feb 2001 07:56:06 -0800


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

Modified Files:
	pep-0207.txt 
Log Message:
Fix typo in the alternate way to spell A<B<C, found by
geepokey@yahoo.com (Gumby).


Index: pep-0207.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0207.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** pep-0207.txt	2001/01/19 22:29:19	1.9
--- pep-0207.txt	2001/02/05 15:56:04	1.10
***************
*** 125,129 ****
        with this; I don't think this is worth the additional complexity
        in the code generator.  Instead of A<B<C, you can write
!       (A<B)&(C<D).
  
      6 The min() and list.sort() operations will only use the
--- 125,129 ----
        with this; I don't think this is worth the additional complexity
        in the code generator.  Instead of A<B<C, you can write
!       (A<B)&(B<C).
  
      6 The min() and list.sort() operations will only use the