diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-14 04:14:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-14 04:14:42 (GMT) |
commit | c6b37e21f513e056b06013a432be715937a27861 (patch) | |
tree | 66264fd38241846b2d9ed4448e92f854bf450ae5 /Lib/test/test_socket.py | |
parent | e74f96ded523fb2fbe977c90093f711ae6bc3d2c (diff) | |
download | cpython-c6b37e21f513e056b06013a432be715937a27861.zip cpython-c6b37e21f513e056b06013a432be715937a27861.tar.gz cpython-c6b37e21f513e056b06013a432be715937a27861.tar.bz2 |
merge 3.3 (#20246)
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index bf42432..cce412a 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -4683,6 +4683,14 @@ class BufferIOTest(SocketConnectedTest): _testRecvFromIntoMemoryview = _testRecvFromIntoArray + def testRecvFromIntoSmallBuffer(self): + # See issue #20246. + buf = bytearray(8) + self.assertRaises(ValueError, self.cli_conn.recvfrom_into, buf, 1024) + + def _testRecvFromIntoSmallBuffer(self): + self.serv_conn.send(MSG*2048) + TIPC_STYPE = 2000 TIPC_LOWER = 200 |