summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorgaogaotiantian <gaogaotiantian@hotmail.com>2023-03-29 10:09:12 (GMT)
committerGitHub <noreply@github.com>2023-03-29 10:09:12 (GMT)
commite375bff03736f809fbc234010c087ef9d7e0d384 (patch)
treeb148534327f0f7f4dfc2705f85fba01974b96e22 /Misc
parentd835b3f05de7e2d800138e5969eeb9656b0ed860 (diff)
downloadcpython-e375bff03736f809fbc234010c087ef9d7e0d384.zip
cpython-e375bff03736f809fbc234010c087ef9d7e0d384.tar.gz
cpython-e375bff03736f809fbc234010c087ef9d7e0d384.tar.bz2
gh-103068: Check condition expression of breakpoints for pdb (#103069)
Co-authored-by: Ɓukasz Langa <lukasz@langa.pl> Co-authored-by: Artem Mukhin <ortem00@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-03-28-05-14-59.gh-issue-103068.YQTmrA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-03-28-05-14-59.gh-issue-103068.YQTmrA.rst b/Misc/NEWS.d/next/Library/2023-03-28-05-14-59.gh-issue-103068.YQTmrA.rst
new file mode 100644
index 0000000..71c142c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-03-28-05-14-59.gh-issue-103068.YQTmrA.rst
@@ -0,0 +1,2 @@
+It's no longer possible to register conditional breakpoints in
+:class:`~pdb.Pdb` that raise :exc:`SyntaxError`. Patch by Tian Gao.