Add note from 308
This commit is contained in:
parent
df7a33afb0
commit
41ae421a05
|
@ -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
|
||||
=========
|
||||
|
||||
|
|
Loading…
Reference in New Issue