]> granicus.if.org Git - python/commitdiff
Fix a typo and a trailing space.
authorKurt B. Kaiser <kbk@shore.net>
Thu, 30 Aug 2007 21:52:19 +0000 (21:52 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Thu, 30 Aug 2007 21:52:19 +0000 (21:52 +0000)
N.B. NEWS doesn't mention that map() and filter() return iterators.

Misc/NEWS

index e6513cc8dc1679f0ff9a0289c8df1a1c62eef2d5..cf52c7ec7fbaafedb04aa9f035db0cd7c3312402 100644 (file)
--- 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.