summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2022-08-23 10:13:53 (GMT)
committerGitHub <noreply@github.com>2022-08-23 10:13:53 (GMT)
commit16ebae4cd4029205d932751f26c719c6cb8a6e92 (patch)
tree6eed2767cf1fe3eaf6e1ee1b48890691ac25bc71 /Misc
parentba7d4b9dc18777e1d3ad2bfc9d935e45e47ebe00 (diff)
downloadcpython-16ebae4cd4029205d932751f26c719c6cb8a6e92.zip
cpython-16ebae4cd4029205d932751f26c719c6cb8a6e92.tar.gz
cpython-16ebae4cd4029205d932751f26c719c6cb8a6e92.tar.bz2
GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH-96188)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-08-22-21-33-28.gh-issue-96187.W_6SRG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-08-22-21-33-28.gh-issue-96187.W_6SRG.rst b/Misc/NEWS.d/next/Core and Builtins/2022-08-22-21-33-28.gh-issue-96187.W_6SRG.rst
new file mode 100644
index 0000000..fd194fa
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-08-22-21-33-28.gh-issue-96187.W_6SRG.rst
@@ -0,0 +1,2 @@
+Fixed a bug that caused ``_PyCode_GetExtra`` to return garbage for negative
+indexes. Patch by Pablo Galindo