diff options
author | Victor Stinner <vstinner@python.org> | 2024-12-13 12:53:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-13 12:53:47 (GMT) |
commit | 6ff38fc4e2af8e795dc791be6ea596d2146d4119 (patch) | |
tree | e4a1d93431b8db928fc86d87b248164d39286b47 /Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst | |
parent | e62e1ca4553dbcf9d7f89be24bebcbd9213f9ae5 (diff) | |
download | cpython-6ff38fc4e2af8e795dc791be6ea596d2146d4119.zip cpython-6ff38fc4e2af8e795dc791be6ea596d2146d4119.tar.gz cpython-6ff38fc4e2af8e795dc791be6ea596d2146d4119.tar.bz2 |
gh-127870: Detect recursive calls in ctypes _as_parameter_ handling (#127872)
Diffstat (limited to 'Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst b/Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst new file mode 100644 index 0000000..99b2df0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-12-12-16-59-42.gh-issue-127870._NFG-3.rst @@ -0,0 +1,2 @@ +Detect recursive calls in ctypes ``_as_parameter_`` handling. +Patch by Victor Stinner. |