diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 19:15:38 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 19:15:38 (GMT) |
commit | 7bf36dace8c3d3714dfe5175891612450cb82ce5 (patch) | |
tree | 849617685ed31b4e51b7d7aff8a63759868cd28c /Lib | |
parent | dc953a507827fb43433e79dad391071a8b48a02f (diff) | |
download | cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.zip cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.tar.gz cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.tar.bz2 |
Issue #27039: Fixed bytearray.remove() for values greater than 127.
Patch by Joe Jevnik.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_bytes.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 741fcce..65c00d7 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -1082,6 +1082,13 @@ class ByteArrayTest(BaseBytesTest, unittest.TestCase): b.remove(Indexable(ord('e'))) self.assertEqual(b, b'') + # test values outside of the ascii range: (0, 127) + c = bytearray([126, 127, 128, 129]) + c.remove(127) + self.assertEqual(c, bytes([126, 128, 129])) + c.remove(129) + self.assertEqual(c, bytes([126, 128])) + def test_pop(self): b = bytearray(b'world') self.assertEqual(b.pop(), ord('d')) |