summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-23 13:41:24 (GMT)
committerGitHub <noreply@github.com>2020-06-23 13:41:24 (GMT)
commit92f8b480bab408be09bc1631cf2e0e5a4641b731 (patch)
tree66a17495e9b3569dd412955094e367048027caa5 /Misc
parentcd696201ff24e6fdd53c413acf4485e09835b89f (diff)
downloadcpython-92f8b480bab408be09bc1631cf2e0e5a4641b731.zip
cpython-92f8b480bab408be09bc1631cf2e0e5a4641b731.tar.gz
cpython-92f8b480bab408be09bc1631cf2e0e5a4641b731.tar.bz2
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``. (cherry picked from commit 1d3dad5f96ed445b958ec53dfa0d46812f2162d9) Co-authored-by: WildCard65 <WildCard65@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2020-06-23-12-02-45.bpo-41085.JZKsyz.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-06-23-12-02-45.bpo-41085.JZKsyz.rst b/Misc/NEWS.d/next/Tests/2020-06-23-12-02-45.bpo-41085.JZKsyz.rst
new file mode 100644
index 0000000..463dffd
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2020-06-23-12-02-45.bpo-41085.JZKsyz.rst
@@ -0,0 +1,2 @@
+Fix integer overflow in the :meth:`array.array.index` method on 64-bit Windows
+for index larger than ``2**31``.