diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-11-23 16:46:14 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-11-23 16:46:14 (GMT) |
commit | cfc6901a7edd64a8571b4573fe93154033618522 (patch) | |
tree | 35d465ea02d324f476d90ec00271b2c989ca377b /Misc | |
parent | e50240c504779e6fc3a988da44d16dc84e263e07 (diff) | |
download | cpython-cfc6901a7edd64a8571b4573fe93154033618522.zip cpython-cfc6901a7edd64a8571b4573fe93154033618522.tar.gz cpython-cfc6901a7edd64a8571b4573fe93154033618522.tar.bz2 |
Add news about pdb fix for yield[from].
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -83,6 +83,10 @@ Library - Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428). +- Issue #16596: pdb in a generator now properly skips over yield and + yield from rather than stepping out of the generator into its + caller. (This is essential for stepping through asyncio coroutines.) + - Issue #17916: Added dis.Bytecode.from_traceback() and dis.Bytecode.current_offset to easily display "current instruction" markers in the new disassembly API (Patch by Claudiu Popa). |