summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-01 16:45:54 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-01 16:45:54 +0200
commit50d256c3e43beba8bb72dc08f003ff16d9a41d0c (patch)
tree345a88ba054f1d2653e8fd6db9df9fca679ec350 /Misc
parent08aa6773b42c066ff913075ff27e1d896e16e445 (diff)
parent4ec569b31165987c3f55b2401db5404a2a50ab2f (diff)
downloadcpython-50d256c3e43beba8bb72dc08f003ff16d9a41d0c.tar.gz
Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
at the end if the FileInput was opened with binary mode. Patch by Ryosuke Ito.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6ce5f2d825..b67a3a5bcd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,10 @@ Core and Builtins
Library
-------
+- Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
+ at the end if the FileInput was opened with binary mode.
+ Patch by Ryosuke Ito.
+
- Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.
Original patch by John Mark Vandenberg.