Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9139f92

Browse files
blueyedmiss-islington
authored andcommitted
bpo-13120: fix typo with test_issue13120() method name (GH-12250)
Incorrect issue number '13210' added in 539ee5d. https://bugs.python.org/issue13120
1 parent b4bcefe commit 9139f92

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_pdb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,9 +1266,9 @@ def bar():
12661266
any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
12671267
'Fail to step into the caller after a return')
12681268

1269-
def test_issue13210(self):
1270-
# invoking "continue" on a non-main thread triggered an exception
1271-
# inside signal.signal
1269+
def test_issue13120(self):
1270+
# Invoking "continue" on a non-main thread triggered an exception
1271+
# inside signal.signal.
12721272

12731273
with open(support.TESTFN, 'wb') as f:
12741274
f.write(textwrap.dedent("""

0 commit comments

Comments
 (0)