diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-08-23 10:13:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 10:13:53 (GMT) |
commit | 16ebae4cd4029205d932751f26c719c6cb8a6e92 (patch) | |
tree | 6eed2767cf1fe3eaf6e1ee1b48890691ac25bc71 /Misc | |
parent | ba7d4b9dc18777e1d3ad2bfc9d935e45e47ebe00 (diff) | |
download | cpython-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.rst | 2 |
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 |