diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-22 14:15:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 14:15:34 (GMT) |
commit | 4ee945479243125ea5c50be526e754df4ab9c749 (patch) | |
tree | 25788d9d580d7918de59f05ca760274527f75afd /Misc | |
parent | 149d70c2546d9615e6292135430795c3cf2b50fe (diff) | |
download | cpython-4ee945479243125ea5c50be526e754df4ab9c749.zip cpython-4ee945479243125ea5c50be526e754df4ab9c749.tar.gz cpython-4ee945479243125ea5c50be526e754df4ab9c749.tar.bz2 |
[3.12] gh-107901: Fix missing line number on BACKWARD_JUMP at the end of a for loop (GH-108242) (#108275)
gh-107901: Fix missing line number on BACKWARD_JUMP at the end of a for loop (GH-108242)
(cherry picked from commit a1cc74c4eebc55795877eb3be019a1bec34402f8)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-08-21-21-13-30.gh-issue-107901.hszvdk.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-08-21-21-13-30.gh-issue-107901.hszvdk.rst b/Misc/NEWS.d/next/Core and Builtins/2023-08-21-21-13-30.gh-issue-107901.hszvdk.rst new file mode 100644 index 0000000..112e093 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-08-21-21-13-30.gh-issue-107901.hszvdk.rst @@ -0,0 +1 @@ +Fix missing line number on :opcode:`JUMP_BACKWARD` at the end of a for loop. |