diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-01-29 05:57:06 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2018-01-29 05:57:06 (GMT) |
commit | 543ec005a4c83fcc0d14ac1e4c0f1a36bf84640b (patch) | |
tree | 0687c1626091b4bdf775ded49a90c9143b41936e /Misc | |
parent | 9105879bfd7133ecbac67f3e9c0bacf6e477de5a (diff) | |
download | cpython-543ec005a4c83fcc0d14ac1e4c0f1a36bf84640b.zip cpython-543ec005a4c83fcc0d14ac1e4c0f1a36bf84640b.tar.gz cpython-543ec005a4c83fcc0d14ac1e4c0f1a36bf84640b.tar.bz2 |
bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400) (#5402)
(cherry picked from commit 46877024423e98d1b872bf308dacacd583327207)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-01-28-23-01-39.bpo-32650.Bbi7ek.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-28-23-01-39.bpo-32650.Bbi7ek.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-23-01-39.bpo-32650.Bbi7ek.rst new file mode 100644 index 0000000..f0b9e3f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-23-01-39.bpo-32650.Bbi7ek.rst @@ -0,0 +1,2 @@ +Pdb and other debuggers dependent on bdb.py will correctly step over (next +command) native coroutines. Patch by Pablo Galindo. |