summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2007-08-30 21:52:19 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2007-08-30 21:52:19 (GMT)
commit2c7f314eafa80e943ad4514bcb7517535dfe7b76 (patch)
tree20c12279813e06182608be63d1b3e174c7aea663 /Misc
parent623d3721478d2383284a1b859aa8c3a74f271e28 (diff)
downloadcpython-2c7f314eafa80e943ad4514bcb7517535dfe7b76.zip
cpython-2c7f314eafa80e943ad4514bcb7517535dfe7b76.tar.gz
cpython-2c7f314eafa80e943ad4514bcb7517535dfe7b76.tar.bz2
Fix a typo and a trailing space.
N.B. NEWS doesn't mention that map() and filter() return iterators.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e6513cc..cf52c7e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,7 +34,7 @@ Core and Builtins
- Remove tuple parameter unpacking (PEP 3113).
-- Remove the f_restricted attribute from frames. This naturally leads to teh
+- Remove the f_restricted attribute from frames. This naturally leads to the
removal of PyEval_GetRestricted() and PyFrame_IsRestricted().
- PEP 3132 was accepted. That means that you can do ``a, *b = range(5)``
@@ -83,7 +83,7 @@ Core and Builtins
output lines in interactive sessions:
>>> print(42, end="")
- 42>>>
+ 42>>>
We may be able to fix this after the I/O library rewrite.