diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-07 19:51:56 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-07 19:51:56 (GMT) |
commit | de5f9f4f70c6527c49d482e3b0bb0aad2851d34c (patch) | |
tree | c93349effc14d46a0b617dd59c01c32337dd29f6 /Lib/test | |
parent | 931331a328d522bb014f9e9c13884d7566108268 (diff) | |
download | cpython-de5f9f4f70c6527c49d482e3b0bb0aad2851d34c.zip cpython-de5f9f4f70c6527c49d482e3b0bb0aad2851d34c.tar.gz cpython-de5f9f4f70c6527c49d482e3b0bb0aad2851d34c.tar.bz2 |
Raise more correct exception on overflow in setting buffer_size attribute of
expat parser.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pyexpat.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py index 7548924..216a46b 100644 --- a/Lib/test/test_pyexpat.py +++ b/Lib/test/test_pyexpat.py @@ -3,6 +3,7 @@ from io import BytesIO import os +import sys import sysconfig import unittest import traceback @@ -543,6 +544,8 @@ class ChardataBufferTest(unittest.TestCase): parser.buffer_size = -1 with self.assertRaises(ValueError): parser.buffer_size = 0 + with self.assertRaises((ValueError, OverflowError)): + parser.buffer_size = sys.maxsize + 1 with self.assertRaises(TypeError): parser.buffer_size = 512.0 |