diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2021-04-02 16:15:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 16:15:21 (GMT) |
commit | ad442a674ca443feec43a88a2d3671784712e550 (patch) | |
tree | fcefb60f52bfade464216d47c7ccb74ca698038b /Misc | |
parent | afd12650580725ac598b2845384771c14c4f952e (diff) | |
download | cpython-ad442a674ca443feec43a88a2d3671784712e550.zip cpython-ad442a674ca443feec43a88a2d3671784712e550.tar.gz cpython-ad442a674ca443feec43a88a2d3671784712e550.tar.bz2 |
bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-08-28-23-07-53.bpo-24160.MSGnKr.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-08-28-23-07-53.bpo-24160.MSGnKr.rst b/Misc/NEWS.d/next/Library/2020-08-28-23-07-53.bpo-24160.MSGnKr.rst new file mode 100644 index 0000000..c0cfd87 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-08-28-23-07-53.bpo-24160.MSGnKr.rst @@ -0,0 +1 @@ +Fixed bug where breakpoints did not persist across multiple debugger sessions in :mod:`pdb`'s interactive mode. |