diff options
author | Tian Gao <gaogaotiantian@hotmail.com> | 2024-09-25 18:18:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 18:18:01 (GMT) |
commit | 28efeefab7d577ea4fb6e3f6e82f903f2aee271d (patch) | |
tree | b053d588877512cbab2eb4782fa941cc33661cea /Doc/whatsnew | |
parent | da5855e99a8c2d6ef2bb20124d2ebb862dbb971f (diff) | |
download | cpython-28efeefab7d577ea4fb6e3f6e82f903f2aee271d.zip cpython-28efeefab7d577ea4fb6e3f6e82f903f2aee271d.tar.gz cpython-28efeefab7d577ea4fb6e3f6e82f903f2aee271d.tar.bz2 |
gh-123756: Disable restart command if pdb is in inline mode (#123757)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.14.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 5acb9bf..4d22f7a 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -318,6 +318,9 @@ pdb :pdbcmd:`commands` are preserved across hard-coded breakpoints. (Contributed by Tian Gao in :gh:`121450`.) +* Added a new argument ``mode`` to :class:`pdb.Pdb`. Disabled ``restart`` + command when :mod:`pdb` is in ``inline`` mode. + (Contributed by Tian Gao in :gh:`123757`.) pickle ------ |