[Python-checkins] r42604 - peps/trunk/pep-3000.txt

neal.norwitz python-checkins at python.org
Mon Feb 27 18:11:08 CET 2006


Author: neal.norwitz
Date: Mon Feb 27 18:11:04 2006
New Revision: 42604

Modified:
   peps/trunk/pep-3000.txt
Log:
Add note from 308

Modified: peps/trunk/pep-3000.txt
==============================================================================
--- peps/trunk/pep-3000.txt	(original)
+++ peps/trunk/pep-3000.txt	Mon Feb 27 18:11:04 2006
@@ -74,6 +74,7 @@
 * List comprehensions will require parentheses around the iterables.
   This will make list comprehensions more similar to generator comprehensions.
   [x for x in 1, 2] will need to be:  [x for x in (1, 2)]
+* Lambdas will have to be parenthesized [23]_
 
 To be removed:
 
@@ -238,6 +239,9 @@
 .. [22] python-dev email ("defaultdict")
    http://mail.python.org/pipermail/python-dev/2006-February/061261.html
 
+.. [23] PEP 308 ("Conditional Expressions")
+   http://www.python.org/peps/pep-0308.html
+
 Copyright
 =========
 


More information about the Python-checkins mailing list