Finally spell parens write (I think).

This commit is contained in:
Neal Norwitz 2006-02-28 17:18:37 +00:00
parent c2c6013283
commit 7abb173d4b
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ Core language
* Cleanup the Py_InitModule() variants {,3,4} (also import and parser APIs)
* Cleanup the APIs exported in pythonrun, etc.
* Fix (or remove) {}.setdefault() [21]_
* Some expressions will require parethenses that didn't in 2.x:
* Some expressions will require parentheses that didn't in 2.x:
- 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)]