summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_struct.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-09 13:20:40 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-09 13:20:40 (GMT)
commitccbcf53865146e7e00f48e3712195ea154ed76fe (patch)
tree8894e83f8f4b71deb4b9a0c8e58fd81e37179af7 /Lib/test/test_struct.py
parent893766cd0b660a1204c53531ecf9879f9075e211 (diff)
downloadcpython-ccbcf53865146e7e00f48e3712195ea154ed76fe.zip
cpython-ccbcf53865146e7e00f48e3712195ea154ed76fe.tar.gz
cpython-ccbcf53865146e7e00f48e3712195ea154ed76fe.tar.bz2
OverflowError is fine
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r--Lib/test/test_struct.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py
index ecf38ba..23ec29a 100644
--- a/Lib/test/test_struct.py
+++ b/Lib/test/test_struct.py
@@ -234,7 +234,8 @@ class StructTest(unittest.TestCase):
b'\x01' + got)
else:
# 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):
from random import randrange