Fix typos in docs and comments (#109619)

This commit is contained in:
Heinz-Alexander Fuetterer 2023-09-20 18:58:23 +02:00 committed by GitHub
parent 32ffe58c12
commit ef6d475db3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 15 additions and 15 deletions

View file

@ -145,7 +145,7 @@ class RebindBuiltinsTests(unittest.TestCase):
code = "lambda: " + "+".join(f"_number_{i}" for i in range(variables))
sum_func = eval(code, MyGlobals())
expected = sum(range(variables))
# Warm up the the function for quickening (PEP 659)
# Warm up the function for quickening (PEP 659)
for _ in range(30):
self.assertEqual(sum_func(), expected)