diff options
author | Savannah Ostrowski <sostrowski@microsoft.com> | 2023-10-25 20:47:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 20:47:16 (GMT) |
commit | 12c7e5071cb6013df69586ccc26835742c4d86b9 (patch) | |
tree | 0b492e0e86e8b5a2274da1de7cdcd683485c145b /Misc | |
parent | 6fea61a9e02260648fbec204e9caac6d5176cc7b (diff) | |
download | cpython-12c7e5071cb6013df69586ccc26835742c4d86b9.zip cpython-12c7e5071cb6013df69586ccc26835742c4d86b9.tar.gz cpython-12c7e5071cb6013df69586ccc26835742c4d86b9.tar.bz2 |
[3.11] GH-94438: Restore ability to jump over None tests (GH-111338)
(cherry picked from commit 6640f1d)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-10-23-22-11-09.gh-issue-94438.y2pITu.rst | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1324,6 +1324,7 @@ Michele Orrù Tomáš Orsava Oleg Oshmyan Denis Osipov +Savannah Ostrowski Denis S. Otkidach Peter Otten Michael Otteneder diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-10-23-22-11-09.gh-issue-94438.y2pITu.rst b/Misc/NEWS.d/next/Core and Builtins/2023-10-23-22-11-09.gh-issue-94438.y2pITu.rst new file mode 100644 index 0000000..b6e147a --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-10-23-22-11-09.gh-issue-94438.y2pITu.rst @@ -0,0 +1 @@ +Fix a regression that prevented jumping across ``is None`` and ``is not None`` when debugging. Patch by Savannah Ostrowski. |