[Python-checkins] python/nondist/peps pep-0308.txt,1.2,1.3

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 07 Feb 2003 14:13:56 -0800


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

Modified Files:
	pep-0308.txt 
Log Message:
Credit where credit is due.  Also add an extra blank line before the
section on ifelse().


Index: pep-0308.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0308.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pep-0308.txt	7 Feb 2003 20:18:45 -0000	1.2
--- pep-0308.txt	7 Feb 2003 22:13:53 -0000	1.3
***************
*** 73,77 ****
  
  
!     Eric Raymond proposed a variant that doesn't have this problem:
  
          <condition> ? <expression1> ! <expression2>
--- 73,78 ----
  
  
!     David Ascher proposed, and Eric Raymond even implemented, a
!     variant that doesn't have this problem:
  
          <condition> ? <expression1> ! <expression2>
***************
*** 98,101 ****
--- 99,103 ----
      advantage of evaluating strictly from left to right (not that that
      is a requirement for being Pythonic -- list comprehensions don't).
+ 
  
      Many people suggest adding a new builtin instead of extending the