[Python-checkins] python/nondist/peps pep-0308.txt,1.16,1.17

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 12 Feb 2003 04:36:02 -0800


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv7597

Modified Files:
	pep-0308.txt 
Log Message:
Put variables in correct order.

Index: pep-0308.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0308.txt,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** pep-0308.txt	12 Feb 2003 04:09:14 -0000	1.16
--- pep-0308.txt	12 Feb 2003 12:35:59 -0000	1.17
***************
*** 86,90 ****
      Holger Krekel proposed a new, minimally invasive variant:
  
!         <expression1> and <condition> else <expression2>
  
      The concept behind it is that a nearly complete ternary operator
--- 86,90 ----
      Holger Krekel proposed a new, minimally invasive variant:
  
!         <condition> and <expression1> else <expression2>
  
      The concept behind it is that a nearly complete ternary operator
***************
*** 97,101 ****
      Christian Tismer proposed a variant of the same idea:
  
!         <expression1> then <condition> else <expression2>
  
      ---
--- 97,101 ----
      Christian Tismer proposed a variant of the same idea:
  
!         <condition> then <expression1> else <expression2>
  
      ---