From 9f41f616c4519a5563659f77bbc3a2f1d8ac3c84 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 9 Mar 2019 15:04:08 +0100 Subject: [PATCH 1/2] tests: fix typo with test_issue13120 It was added in 539ee5da6f, and should have the correct name. --- Lib/test/test_pdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 21f6b7079bb54e..68662b199dca17 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -1266,7 +1266,7 @@ def bar(): any('main.py(5)foo()->None' in l for l in stdout.splitlines()), 'Fail to step into the caller after a return') - def test_issue13210(self): + def test_issue13120(self): # invoking "continue" on a non-main thread triggered an exception # inside signal.signal From a8e72d952e69c7fb779dffe2592a1c358977f42e Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 1 Apr 2019 14:42:07 -0700 Subject: [PATCH 2/2] Touch up comment --- Lib/test/test_pdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 68662b199dca17..bcc468be11d4b5 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -1267,8 +1267,8 @@ def bar(): 'Fail to step into the caller after a return') def test_issue13120(self): - # invoking "continue" on a non-main thread triggered an exception - # inside signal.signal + # Invoking "continue" on a non-main thread triggered an exception + # inside signal.signal. with open(support.TESTFN, 'wb') as f: f.write(textwrap.dedent("""