summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-04-15 05:28:08 (GMT)
committerGitHub <noreply@github.com>2017-04-15 05:28:08 (GMT)
commit4f43f87b6246e13e0eefc793a2c5415c915723c3 (patch)
treeda02fa02a81385a18809be191a10942d4a7f5de5 /Misc/NEWS
parentf40e72dbe60038eae69bc72e207ac47851d96752 (diff)
downloadcpython-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/NEWS8
1 files changed, 5 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c6df1b8..d440363 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.