summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-01-05 04:52:50 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-01-05 04:52:50 (GMT)
commit410d320703313b6a303094b8355ae7cc1f0196f6 (patch)
treeafeaab503d68b01b002889d08115706085b26e96 /Misc
parentaed5b22ead9127103cea2de8722d36b90a320142 (diff)
downloadcpython-410d320703313b6a303094b8355ae7cc1f0196f6.zip
cpython-410d320703313b6a303094b8355ae7cc1f0196f6.tar.gz
cpython-410d320703313b6a303094b8355ae7cc1f0196f6.tar.bz2
whatsnew: XMLPullParser, plus some doc updates.
I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS10
1 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a640295..0e59d0f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2193,14 +2193,14 @@ Library
- Issue #17555: Fix ForkAwareThreadLock so that size of after fork
registry does not grow exponentially with generation of process.
-- Issue #17707: multiprocessing.Queue's get() method does not block for short
- timeouts.
+- Issue #17707: fix regression in multiprocessing.Queue's get() method where
+ it did not block for short timeouts.
-- Isuse #17720: Fix the Python implementation of pickle.Unpickler to correctly
+- Issue #17720: Fix the Python implementation of pickle.Unpickler to correctly
process the APPENDS opcode when it is used on non-list objects.
-- Issue #17012: shutil.which() no longer fallbacks to the PATH environment
- variable if empty path argument is specified. Patch by Serhiy Storchaka.
+- Issue #17012: shutil.which() no longer falls back to the PATH environment
+ variable if an empty path argument is specified. Patch by Serhiy Storchaka.
- Issue #17710: Fix pickle raising a SystemError on bogus input.