mirror of https://github.com/python/cpython
OverflowError is fine
This commit is contained in:
parent
893766cd0b
commit
ccbcf53865
|
@ -234,7 +234,8 @@ class StructTest(unittest.TestCase):
|
||||||
b'\x01' + got)
|
b'\x01' + got)
|
||||||
else:
|
else:
|
||||||
# x is out of range -- verify pack realizes that.
|
# x is out of range -- verify pack realizes that.
|
||||||
self.assertRaises(struct.error, pack, format, x)
|
self.assertRaises((OverflowError, struct.error), pack,
|
||||||
|
format, x)
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
from random import randrange
|
from random import randrange
|
||||||
|
|
Loading…
Reference in New Issue