diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-09 23:40:30 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-09 23:40:30 (GMT) |
commit | f3b3e9e23c2bc1e2f93e20f936b683a969d8260c (patch) | |
tree | bc4aa6fc44a1cf1473e150d39bdb200ad1dd13f0 /Doc | |
parent | 6ae5eef5429e8663024ad32c6f38c89f9171aea0 (diff) | |
download | cpython-f3b3e9e23c2bc1e2f93e20f936b683a969d8260c.zip cpython-f3b3e9e23c2bc1e2f93e20f936b683a969d8260c.tar.gz cpython-f3b3e9e23c2bc1e2f93e20f936b683a969d8260c.tar.bz2 |
whatsnew: pdb works for debugging asyncio programs (#16596).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 6b1af0e..8861d88 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1066,6 +1066,11 @@ root on Windows. (Contributed by Tim Golden in :issue:`9035`.) pdb --- +:mod:`pdb` has been enhanced to handle generators, :keyword:`yield`, and +:keyword:`yield from` in a more useful fashion. This is especially helpful when +debugging :mod:`asyncio` based programs. (Contributed by Andrew Svetlov and +Xavier de Gaye in :issue:`16596`.) + The ``print`` command has been removed from :mod:`pdb`, restoring access to the Python :func:`print` function from the pdb command line. Python2's ``pdb`` did not have a ``print`` command; instead, entering ``print`` executed the |