Add note from 308

This commit is contained in:
Neal Norwitz 2006-02-27 17:11:04 +00:00
parent df7a33afb0
commit 41ae421a05
1 changed files with 4 additions and 0 deletions

View File

@ -74,6 +74,7 @@ Core language
* 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 @@ References
.. [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
=========