ValueError is eventually what we want to move to, I suppose

This commit is contained in:
Benjamin Peterson 2010-07-10 15:14:45 +00:00
parent 522c32a7e3
commit 0d62f5bbfe
1 changed files with 2 additions and 2 deletions

View File

@ -234,8 +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((OverflowError, struct.error), pack, self.assertRaises((OverflowError, ValueError, struct.error),
format, x) pack, format, x)
def run(self): def run(self):
from random import randrange from random import randrange