Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays

This commit is contained in:
Eli Bendersky 2011-03-04 04:55:25 +00:00
parent 424298a155
commit 1bc4f193d8
3 changed files with 6 additions and 3 deletions

View file

@ -790,7 +790,7 @@ class ByteArrayTest(BaseBytesTest):
self.assertEqual(b.pop(0), ord('w'))
self.assertEqual(b.pop(-2), ord('r'))
self.assertRaises(IndexError, lambda: b.pop(10))
self.assertRaises(OverflowError, lambda: bytearray().pop())
self.assertRaises(IndexError, lambda: bytearray().pop())
# test for issue #6846
self.assertEqual(bytearray(b'\xff').pop(), 0xff)