diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-04-15 04:47:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-15 04:47:28 (GMT) |
commit | 026435ce49419a3366171416c68114dd8a1144c7 (patch) | |
tree | bc20a7681507de85662e789a3331b3a048bdaed6 /Misc | |
parent | eaeda64c2fd2abd33e59b03298f9cdc9e8efef89 (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |