diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-01 14:45:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-01 14:45:26 (GMT) |
commit | 56275dc1e2a2f354620189efd751fa90af2118e1 (patch) | |
tree | 4912005e11192ecc7edac3899e72bc2c8f0460ea /Misc | |
parent | 14eefe353e3f251bce0bc7ed3415f78c17174d94 (diff) | |
parent | 314464d0ab4ad283fce7594158b2464d47cc68d8 (diff) | |
download | cpython-56275dc1e2a2f354620189efd751fa90af2118e1.zip cpython-56275dc1e2a2f354620189efd751fa90af2118e1.tar.gz cpython-56275dc1e2a2f354620189efd751fa90af2118e1.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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -48,6 +48,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. |