[Python-checkins] bpo-13120: fix typo with test_issue13120() method name (GH-12250)

Miss Islington (bot) webhook-mailer at python.org
Mon Apr 1 17:59:53 EDT 2019


https://github.com/python/cpython/commit/9139f926a8d8e5b71830cb7e10b0807836b5e9a4
commit: 9139f926a8d8e5b71830cb7e10b0807836b5e9a4
branch: master
author: Daniel Hahler <github at thequod.de>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-04-01T14:59:50-07:00
summary:

bpo-13120: fix typo with test_issue13120() method name (GH-12250)



Incorrect issue number '13210' added in 539ee5da6f.


https://bugs.python.org/issue13120

files:
M Lib/test/test_pdb.py

diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py
index 7e03df02946b..56d823249544 100644
--- a/Lib/test/test_pdb.py
+++ b/Lib/test/test_pdb.py
@@ -1266,9 +1266,9 @@ 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):
-        # 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("""



More information about the Python-checkins mailing list