summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi.py
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-08-21 06:25:41 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-08-21 06:25:41 (GMT)
commit5b27c53e36a909b451c1a87522fc41a7b16aa9e3 (patch)
tree42122c71b19ef08c1b075dd67b2dd7fb1f8fcd25 /Lib/test/test_capi.py
parent139cd4352f38e3e1d6b1f86033dc86ec61620e72 (diff)
parent7cacd2eb92dad7e63a0249974617de33f4c4a0e0 (diff)
downloadcpython-5b27c53e36a909b451c1a87522fc41a7b16aa9e3.zip
cpython-5b27c53e36a909b451c1a87522fc41a7b16aa9e3.tar.gz
cpython-5b27c53e36a909b451c1a87522fc41a7b16aa9e3.tar.bz2
Merge 3.2.
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r--Lib/test/test_capi.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index 34dbe58..d3c4a04 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -90,6 +90,14 @@ class CAPITest(unittest.TestCase):
return 1
self.assertRaises(TypeError, _posixsubprocess.fork_exec,
1,Z(),3,[1, 2],5,6,7,8,9,10,11,12,13,14,15,16,17)
+ # Issue #15736: overflow in _PySequence_BytesToCharpArray()
+ class Z(object):
+ def __len__(self):
+ return sys.maxsize
+ def __getitem__(self, i):
+ return b'x'
+ self.assertRaises(MemoryError, _posixsubprocess.fork_exec,
+ 1,Z(),3,[1, 2],5,6,7,8,9,10,11,12,13,14,15,16,17)
@unittest.skipUnless(_posixsubprocess, '_posixsubprocess required for this test.')
def test_subprocess_fork_exec(self):