From cfc6901a7edd64a8571b4573fe93154033618522 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 23 Nov 2013 08:46:14 -0800 Subject: Add news about pdb fix for yield[from]. --- Misc/NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 2b804e8..282254f 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). -- cgit v0.12 From 0da64f7ffb35db7f71c389214bc68cc91d5cb091 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 23 Nov 2013 17:58:26 +0100 Subject: Isue #19634: test_y_before_1900() is expected to fail on Solaris --- Lib/test/test_strftime.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_strftime.py b/Lib/test/test_strftime.py index ff6274e..772cd06 100644 --- a/Lib/test/test_strftime.py +++ b/Lib/test/test_strftime.py @@ -183,8 +183,10 @@ class Y1900Tests(unittest.TestCase): """ def test_y_before_1900(self): + # Issue #13674, #19634 t = (1899, 1, 1, 0, 0, 0, 0, 0, 0) - if sys.platform == "win32" or sys.platform.startswith("aix"): + if (sys.platform == "win32" + or sys.platform.startswith(("aix", "sunos", "solaris"))): with self.assertRaises(ValueError): time.strftime("%y", t) else: -- cgit v0.12