[Python-checkins] cpython: Add news about pdb fix for yield[from].

guido.van.rossum python-checkins at python.org
Sat Nov 23 17:46:21 CET 2013


http://hg.python.org/cpython/rev/dc3c30dac5e3
changeset:   87428:dc3c30dac5e3
parent:      87426:9f2a0043396b
user:        Guido van Rossum <guido at dropbox.com>
date:        Sat Nov 23 08:46:14 2013 -0800
summary:
  Add news about pdb fix for yield[from].

files:
  Misc/NEWS |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,10 @@
 
 - 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).

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list