[issue36285] Integer overflow in array.array.remove()

2020-10-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36285] Integer overflow in array.array.remove()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? It was not backported to 3.7, but that's over now right? -- nosy: +iritkatriel ___ Python tracker ___ _

[issue36285] Integer overflow in array.array.remove()

2019-03-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset aa3ecb80416958eb6fe8cc1b0dfbbfdfbcccead1 by Serhiy Storchaka (sth) in branch 'master': bpo-36285: Fix integer overflow in the array module. (GH-12317) https://github.com/python/cpython/commit/aa3ecb80416958eb6fe8cc1b0dfbbfdfbcccead1

[issue36285] Integer overflow in array.array.remove()

2019-03-13 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue36285] Integer overflow in array.array.remove()

2019-03-13 Thread Stephan Hohe
Change by Stephan Hohe : -- keywords: +patch pull_requests: +12291 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue36285] Integer overflow in array.array.remove()

2019-03-13 Thread Stephan Hohe
New submission from Stephan Hohe : The array module's `array.remove(x)` iterates over the array, searching for `x`. If the array contains >=2G elements this can overflow the `int` loop variable. `array__array_reconstructor_impl()` also contains loops with `int` variables that likely have the