From: Daniel Hahler Date: Tue, 11 Sep 2018 01:04:33 +0000 (+0200) Subject: Lib/test/support: fix typo in docstring (GH-8506) X-Git-Tag: v3.8.0a1~1067 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e578fa162eef1cef27bc7dbf7ca46ab6dc52688a;p=python Lib/test/support: fix typo in docstring (GH-8506) --- diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 13b60f7e81..de997b253a 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1955,8 +1955,8 @@ def set_match_tests(patterns): def match_test_regex(test_id): if regex_match(test_id): - # The regex matchs the whole identifier like - # 'test.test_os.FileTests.test_access' + # The regex matches the whole identifier, for example + # 'test.test_os.FileTests.test_access'. return True else: # Try to match parts of the test identifier.