bpo-36285: Fix integer overflow in the array module. (GH-12317)

This commit is contained in:
sth 2019-03-20 20:49:39 +01:00 committed by Serhiy Storchaka
parent c1e2c288f4
commit aa3ecb8041
3 changed files with 146 additions and 4 deletions

View file

@ -0,0 +1 @@
Fix integer overflows in the array module. Patch by Stephan Hohe.