summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
diff options
context:
space:
mode:
authoralgonell <algonell@gmail.com>2024-09-09 12:58:26 (GMT)
committerGitHub <noreply@github.com>2024-09-09 12:58:26 (GMT)
commit9017b95ff2dcff16bcb0b0a609ed2b0daa845943 (patch)
treeb7585aa38d40524cd8a0244f5577e50c0ffaaf07 /Lib/test/test_re.py
parentdf4f0cbfad8a1ed0146cabd30d01efd135d4d048 (diff)
downloadcpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.zip
cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.gz
cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.bz2
Fix typos (#123775)
Diffstat (limited to 'Lib/test/test_re.py')
-rw-r--r--Lib/test/test_re.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index c1d4653..7e454cb 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -2503,7 +2503,7 @@ class ReTests(unittest.TestCase):
self.assertEqual(re.search(r'12(?!)|3', '123')[0], '3')
def test_character_set_any(self):
- # The union of complementary character sets mathes any character
+ # The union of complementary character sets matches any character
# and is equivalent to "(?s:.)".
s = '1x\n'
for p in r'[\s\S]', r'[\d\D]', r'[\w\W]', r'[\S\s]', r'\s|\S':