From: Guido van Rossum Date: Sat, 23 Nov 2013 16:46:14 +0000 (-0800) Subject: Add news about pdb fix for yield[from]. X-Git-Tag: v3.4.0b1~64^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc6901a7edd64a8571b4573fe93154033618522;p=thirdparty%2FPython%2Fcpython.git Add news about pdb fix for yield[from]. --- diff --git a/Misc/NEWS b/Misc/NEWS index 2b804e8cabe8..282254fd3ea0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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).