summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-03 19:24:47 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-03 19:24:47 (GMT)
commit212843b29f573f56c16940b0600b907847fc11f7 (patch)
treee4530d649b0ade596291528b8723572011d386ad /Lib/test/test_bytes.py
parent1a5f3ec9a97311dc6d956aea4ec44a06db0d112a (diff)
parentc64bcbec4bb3cdad320184b4155cdc05c55bb10d (diff)
downloadcpython-212843b29f573f56c16940b0600b907847fc11f7.zip
cpython-212843b29f573f56c16940b0600b907847fc11f7.tar.gz
cpython-212843b29f573f56c16940b0600b907847fc11f7.tar.bz2
#8401: merge with 3.3.
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index ec79cb8..8ae90e4 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -885,6 +885,24 @@ class ByteArrayTest(BaseBytesTest):
b[3:0] = [42, 42, 42]
self.assertEqual(b, bytearray([0, 1, 2, 42, 42, 42, 3, 4, 5, 6, 7, 8, 9]))
+ b[3:] = b'foo'
+ self.assertEqual(b, bytearray([0, 1, 2, 102, 111, 111]))
+
+ b[:3] = memoryview(b'foo')
+ self.assertEqual(b, bytearray([102, 111, 111, 102, 111, 111]))
+
+ b[3:4] = []
+ self.assertEqual(b, bytearray([102, 111, 111, 111, 111]))
+
+ for elem in [5, -5, 0, int(10e20), 'str', 2.3,
+ ['a', 'b'], [b'a', b'b'], [[]]]:
+ with self.assertRaises(TypeError):
+ b[3:4] = elem
+
+ for elem in [[254, 255, 256], [-256, 9000]]:
+ with self.assertRaises(ValueError):
+ b[3:4] = elem
+
def test_extended_set_del_slice(self):
indices = (0, None, 1, 3, 19, 300, 1<<333, -1, -2, -31, -300)
for start in indices: