summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 20:51:16 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 20:51:16 (GMT)
commitd2780aedce824867ed14bd9a2a5ef050ae0c8d30 (patch)
treee1f7313f05fc0220b3a0911c2ba3f11429f049c8 /Lib
parentaf62c7d3deb6e6db5a0ef1190b8dd889be013a41 (diff)
parent988512cfd7c896dd8b900d0f00cba05c4c807dc3 (diff)
downloadcpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.zip
cpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.tar.gz
cpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.tar.bz2
(Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read()
returns None.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/_pyio.py6
-rw-r--r--Lib/test/test_io.py7
2 files changed, 10 insertions, 3 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index a3b89e7..74047bf 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -558,7 +558,11 @@ class RawIOBase(IOBase):
if not data:
break
res += data
- return bytes(res)
+ if res:
+ return bytes(res)
+ else:
+ # b'' or None
+ return data
def readinto(self, b):
"""Read up to len(b) bytes into bytearray b.
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index f03e433..c0dc6ec 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -833,14 +833,17 @@ class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):
# Inject some None's in there to simulate EWOULDBLOCK
rawio = self.MockRawIO((b"abc", b"d", None, b"efg", None, None, None))
bufio = self.tp(rawio)
-
self.assertEqual(b"abcd", bufio.read(6))
self.assertEqual(b"e", bufio.read(1))
self.assertEqual(b"fg", bufio.read())
self.assertEqual(b"", bufio.peek(1))
- self.assertTrue(None is bufio.read())
+ self.assertIsNone(bufio.read())
self.assertEqual(b"", bufio.read())
+ rawio = self.MockRawIO((b"a", None, None))
+ self.assertEqual(b"a", rawio.readall())
+ self.assertIsNone(rawio.readall())
+
def test_read_past_eof(self):
rawio = self.MockRawIO((b"abc", b"d", b"efg"))
bufio = self.tp(rawio)