]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071)
authorWildCard65 <WildCard65@users.noreply.github.com>
Tue, 23 Jun 2020 13:21:16 +0000 (09:21 -0400)
committerGitHub <noreply@github.com>
Tue, 23 Jun 2020 13:21:16 +0000 (15:21 +0200)
commit1d3dad5f96ed445b958ec53dfa0d46812f2162d9
tree78b0a7a433fe841a2b1811c33284e4c6dd604d9b
parent261cfedf7657a515e04428bba58eba2a9bb88208
bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071)

Fix integer overflow in the :meth:`array.array.index` method on 64-bit Windows
for index larger than ``2**31``.
Misc/NEWS.d/next/Tests/2020-06-23-12-02-45.bpo-41085.JZKsyz.rst [new file with mode: 0644]
Modules/arraymodule.c