summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-01 14:43:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-01 14:43:58 (GMT)
commit314464d0ab4ad283fce7594158b2464d47cc68d8 (patch)
tree365304a1c140df7cb90a1cb501f18713226580c8 /Lib/test
parent1f1177d69a21805c374b6b4cfce9f9f76bceb822 (diff)
downloadcpython-314464d0ab4ad283fce7594158b2464d47cc68d8.zip
cpython-314464d0ab4ad283fce7594158b2464d47cc68d8.tar.gz
cpython-314464d0ab4ad283fce7594158b2464d47cc68d8.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 'Lib/test')
-rw-r--r--Lib/test/test_fileinput.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_fileinput.py b/Lib/test/test_fileinput.py
index 1d089f5..4765a05 100644
--- a/Lib/test/test_fileinput.py
+++ b/Lib/test/test_fileinput.py
@@ -288,6 +288,21 @@ class FileInputTests(unittest.TestCase):
with self.assertRaises(UnicodeDecodeError):
# Read to the end of file.
list(fi)
+ self.assertEqual(fi.readline(), '')
+ self.assertEqual(fi.readline(), '')
+
+ def test_readline_binary_mode(self):
+ with open(TESTFN, 'wb') as f:
+ f.write(b'A\nB\r\nC\rD')
+ self.addCleanup(safe_unlink, TESTFN)
+
+ with FileInput(files=TESTFN, mode='rb') as fi:
+ self.assertEqual(fi.readline(), b'A\n')
+ self.assertEqual(fi.readline(), b'B\r\n')
+ self.assertEqual(fi.readline(), b'C\rD')
+ # Read to the end of file.
+ self.assertEqual(fi.readline(), b'')
+ self.assertEqual(fi.readline(), b'')
def test_context_manager(self):
try: