diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-04-15 05:28:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-15 05:28:08 (GMT) |
commit | 4f43f87b6246e13e0eefc793a2c5415c915723c3 (patch) | |
tree | da02fa02a81385a18809be191a10942d4a7f5de5 /Misc/NEWS | |
parent | f40e72dbe60038eae69bc72e207ac47851d96752 (diff) | |
download | cpython-4f43f87b6246e13e0eefc793a2c5415c915723c3.zip cpython-4f43f87b6246e13e0eefc793a2c5415c915723c3.tar.gz cpython-4f43f87b6246e13e0eefc793a2c5415c915723c3.tar.bz2 |
bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is present (#1130) (#1151)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -49,12 +49,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. +- bpo-29692: Fixed arbitrary unchaining of RuntimeError exceptions in + contextlib.contextmanager. Patch by Siddharth Velankar. - bpo-29998: Pickling and copying ImportError now preserves name and path attributes. |