summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorDaniel Hahler <github@thequod.de>2018-09-11 01:04:33 (GMT)
committerGregory P. Smith <greg@krypto.org>2018-09-11 01:04:33 (GMT)
commite578fa162eef1cef27bc7dbf7ca46ab6dc52688a (patch)
tree00046ac6a4200ba5d94cd9a79ef6524abdeac7c7 /Lib
parented2e9ab804606019f167ef914bde43bc135c725f (diff)
downloadcpython-e578fa162eef1cef27bc7dbf7ca46ab6dc52688a.zip
cpython-e578fa162eef1cef27bc7dbf7ca46ab6dc52688a.tar.gz
cpython-e578fa162eef1cef27bc7dbf7ca46ab6dc52688a.tar.bz2
Lib/test/support: fix typo in docstring (GH-8506)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/support/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index 13b60f7..de997b2 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.