From 9139f926a8d8e5b71830cb7e10b0807836b5e9a4 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 1 Apr 2019 23:59:50 +0200 Subject: [PATCH] bpo-13120: fix typo with test_issue13120() method name (GH-12250) Incorrect issue number '13210' added in 539ee5da6f. https://bugs.python.org/issue13120 --- Lib/test/test_pdb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 7e03df02946..56d82324954 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -1266,9 +1266,9 @@ class PdbTestCase(unittest.TestCase): 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): - # invoking "continue" on a non-main thread triggered an exception - # inside signal.signal + def test_issue13120(self): + # Invoking "continue" on a non-main thread triggered an exception + # inside signal.signal. with open(support.TESTFN, 'wb') as f: f.write(textwrap.dedent("""