summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-06-23 14:19:13 (GMT)
committerGitHub <noreply@github.com>2022-06-23 14:19:13 (GMT)
commit5b6e5762ca2f758330d2708c63e301720cf3dfae (patch)
treea079a828b7d90f5ef8161f1af4e8069424288eb4 /Misc
parent89285314bdbd067922d5eb02efd76da07e6fce4e (diff)
downloadcpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.zip
cpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.tar.gz
cpython-5b6e5762ca2f758330d2708c63e301720cf3dfae.tar.bz2
GH-91742: Fix pdb crash after jump (GH-94171)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-06-23-13-12-05.gh-issue-91742.sNytVX.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-06-23-13-12-05.gh-issue-91742.sNytVX.rst b/Misc/NEWS.d/next/Library/2022-06-23-13-12-05.gh-issue-91742.sNytVX.rst
new file mode 100644
index 0000000..30c9236
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-06-23-13-12-05.gh-issue-91742.sNytVX.rst
@@ -0,0 +1 @@
+Fix :mod:`pdb` crash after jump caused by a null pointer dereference. Patch by Kumar Aditya.