summaryrefslogtreecommitdiff
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-28 11:55:24 +0000
committerGeorg Brandl <georg@python.org>2008-12-28 11:55:24 +0000
commitef29f8634ca5415fda7aa75c9c142d3eaf2edebc (patch)
tree83747d92acba51003a7598774a1a71c81408803a /Lib/test/test_bytes.py
parent828a7066f12e758c30829363c8ec9018c6c2a94f (diff)
downloadcpython-git-ef29f8634ca5415fda7aa75c9c142d3eaf2edebc.tar.gz
Backport r67975: #4759: fix segfault in bytearray.translate(x, None).
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 36defb8a84..00aee028b1 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -872,11 +872,19 @@ class AssortedBytesTest(unittest.TestCase):
def test_translate(self):
b = b'hello'
+ ba = bytearray(b)
rosetta = bytearray(range(0, 256))
rosetta[ord('o')] = ord('e')
c = b.translate(rosetta, b'l')
self.assertEqual(b, b'hello')
self.assertEqual(c, b'hee')
+ c = ba.translate(rosetta, b'l')
+ self.assertEqual(ba, b'hello')
+ self.assertEqual(c, b'hee')
+ c = b.translate(None, b'e')
+ self.assertEqual(c, b'hllo')
+ self.assertRaises(TypeError, b.translate, b'a'*256, None)
+ self.assertRaises(TypeError, ba.translate, b'a'*256, None)
def test_split_bytearray(self):
self.assertEqual(b'a b'.split(memoryview(b' ')), [b'a', b'b'])