summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-01 14:45:54 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-01 14:45:54 (GMT)
commit17bdf2015d8c46d6418ad7b8742a4fb0d277a642 (patch)
tree52b5aada60471174cf331f2f5ea594354cea54b8 /Misc/NEWS
parent9b69491901045bcaff15fd9de9eb4c888cc5a3bd (diff)
parent56275dc1e2a2f354620189efd751fa90af2118e1 (diff)
downloadcpython-17bdf2015d8c46d6418ad7b8742a4fb0d277a642.zip
cpython-17bdf2015d8c46d6418ad7b8742a4fb0d277a642.tar.gz
cpython-17bdf2015d8c46d6418ad7b8742a4fb0d277a642.tar.bz2
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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6ce5f2d..b67a3a5 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.