summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-04-15 04:47:28 (GMT)
committerGitHub <noreply@github.com>2017-04-15 04:47:28 (GMT)
commit026435ce49419a3366171416c68114dd8a1144c7 (patch)
treebc20a7681507de85662e789a3331b3a048bdaed6 /Misc
parenteaeda64c2fd2abd33e59b03298f9cdc9e8efef89 (diff)
downloadcpython-026435ce49419a3366171416c68114dd8a1144c7.zip
cpython-026435ce49419a3366171416c68114dd8a1144c7.tar.gz
cpython-026435ce49419a3366171416c68114dd8a1144c7.tar.bz2
bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is present (#1130)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c780241..da40d8f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -310,12 +310,14 @@ Extension Modules
Library
-------
+- bpo-30068: _io._IOBase.readlines will check if it's closed first when
+ hint is present.
+
- bpo-29694: Fixed race condition in pathlib mkdir with flags
parents=True. Patch by Armin Rigo.
- bpo-29692: Fixed arbitrary unchaining of RuntimeError exceptions in
- contextlib.contextmanager.
- Patch by Siddharth Velankar.
+ contextlib.contextmanager. Patch by Siddharth Velankar.
- bpo-26187: Test that sqlite3 trace callback is not called multiple
times when schema is changing. Indirectly fixed by switching to