diff options
author | Mark Shannon <mark@hotpy.org> | 2024-11-07 10:48:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 10:48:27 (GMT) |
commit | 85036c8d612007356d2118eb25b460505078b023 (patch) | |
tree | 78dfc47664d812b777308256384a08b8b83cbed9 /Misc/NEWS.d | |
parent | c9cda1608edf7664c10f4f467e24591062c2fe62 (diff) | |
download | cpython-85036c8d612007356d2118eb25b460505078b023.zip cpython-85036c8d612007356d2118eb25b460505078b023.tar.gz cpython-85036c8d612007356d2118eb25b460505078b023.tar.bz2 |
GH-126222: Fix `_PyUop_num_popped` (GH-126507)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-11-06-16-34-11.gh-issue-126222.9NBfTn.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-11-06-16-34-11.gh-issue-126222.9NBfTn.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-06-16-34-11.gh-issue-126222.9NBfTn.rst new file mode 100644 index 0000000..ebf6673 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-11-06-16-34-11.gh-issue-126222.9NBfTn.rst @@ -0,0 +1,3 @@ +Do not include count of "peek" items in ``_PyUop_num_popped``. This ensures +that the correct number of items are popped from the stack when a micro-op +exits with an error. |