]> granicus.if.org Git - python/commitdiff
readline() args must be an int #3521
authorBenjamin Peterson <benjamin@python.org>
Fri, 24 Apr 2009 22:59:52 +0000 (22:59 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 24 Apr 2009 22:59:52 +0000 (22:59 +0000)
Lib/_pyio.py
Lib/test/test_io.py

index fe020fdc5dad73ba65c08bc94a4a0433b07aad00..e580366df7c81713be023b1cca09a081f170e9af 100644 (file)
@@ -460,6 +460,8 @@ class IOBase(metaclass=abc.ABCMeta):
                 return 1
         if limit is None:
             limit = -1
+        elif not isinstance(limit, int):
+            raise TypeError("limit must be an integer")
         res = bytearray()
         while limit < 0 or len(res) < limit:
             b = self.read(nreadahead())
@@ -1741,6 +1743,8 @@ class TextIOWrapper(TextIOBase):
             raise ValueError("read from closed file")
         if limit is None:
             limit = -1
+        elif not isinstance(limit, int):
+            raise TypeError("limit must be an integer")
 
         # Grab all the decoded text (we will rewind any extra bits later).
         line = self._get_decoded_chars()
index 439af7aab16c45d93a4aff5d0effc6c9ac05b482..745971464255175ed09b091f6e45c7bf319f736b 100644 (file)
@@ -319,7 +319,7 @@ class IOTest(unittest.TestCase):
         f.close()
 
     def test_readline(self):
-        f = io.open(support.TESTFN, "wb")
+        f = self.open(support.TESTFN, "wb")
         f.write(b"abc\ndef\nxyzzy\nfoo\x00bar\nanother line")
         f.close()
         f = self.open(support.TESTFN, "rb")
@@ -329,7 +329,10 @@ class IOTest(unittest.TestCase):
         self.assertEqual(f.readline(4), b"zzy\n")
         self.assertEqual(f.readline(), b"foo\x00bar\n")
         self.assertEqual(f.readline(), b"another line")
+        self.assertRaises(TypeError, f.readline, 5.3)
         f.close()
+        f = self.open(support.TESTFN, "r")
+        self.assertRaises(TypeError, f.readline, 5.3)
 
     def test_raw_bytes_io(self):
         f = self.BytesIO()