diff options
author | Mark Shannon <mark@hotpy.org> | 2025-01-13 11:42:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-13 11:42:45 (GMT) |
commit | 39fc7ef4fe211e8f7d3b5a6e392e475ecdfbce72 (patch) | |
tree | 39aae222528f9f1858da6044c6e914e55b1af1ec /Misc/NEWS.d | |
parent | afb9dc887c6e8ae17b6a54c6124399e8bdc82253 (diff) | |
download | cpython-39fc7ef4fe211e8f7d3b5a6e392e475ecdfbce72.zip cpython-39fc7ef4fe211e8f7d3b5a6e392e475ecdfbce72.tar.gz cpython-39fc7ef4fe211e8f7d3b5a6e392e475ecdfbce72.tar.bz2 |
GH-124483: Mark `Py_DECREF`, etc. as escaping for the JIT (GH-128678)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2025-01-09-11-46-57.gh-issue-124483.KRtBeQ.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-01-09-11-46-57.gh-issue-124483.KRtBeQ.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-01-09-11-46-57.gh-issue-124483.KRtBeQ.rst new file mode 100644 index 0000000..6f2e726 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2025-01-09-11-46-57.gh-issue-124483.KRtBeQ.rst @@ -0,0 +1,3 @@ +Treat ``Py_DECREF`` and variants as escaping when generating opcode and uop +metadata. This prevents the possibility of a ``__del__`` method causing the JIT +to behave incorrectly. |