diff options
author | gaogaotiantian <gaogaotiantian@hotmail.com> | 2023-03-27 13:37:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 22:37:22 +0200 |
commit | 36067532467ec58c87ac9c140e555e1866431981 (patch) | |
tree | 4907a023a9f5b03fa5533b08d6829922ac6d2686 /Misc/NEWS.d | |
parent | 2cdc5189a6bc3157fddd814662bde99ecfd77529 (diff) | |
download | cpython-git-36067532467ec58c87ac9c140e555e1866431981.tar.gz |
gh-103023: Add SyntaxError check in pdb's `display` command (#103024)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-03-25-02-08-05.gh-issue-103023.Qfn7Hl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-03-25-02-08-05.gh-issue-103023.Qfn7Hl.rst b/Misc/NEWS.d/next/Library/2023-03-25-02-08-05.gh-issue-103023.Qfn7Hl.rst new file mode 100644 index 0000000000..e7958f6f00 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-03-25-02-08-05.gh-issue-103023.Qfn7Hl.rst @@ -0,0 +1,2 @@ +It's no longer possible to register expressions to display in +:class:`~pdb.Pdb` that raise :exc:`SyntaxError`. Patch by Tian Gao. |