summaryrefslogtreecommitdiffstats
path: root/Lib/test/test__interpreters.py
diff options
context:
space:
mode:
authorXie Yanbo <xieyanbo@gmail.com>2024-08-07 06:39:16 (GMT)
committerGitHub <noreply@github.com>2024-08-07 06:39:16 (GMT)
commitb6c80e21c78ea86fb12b331f69881a586ed487e0 (patch)
treef3ccb152fa27be8da9e6fb84217e5c657d541c18 /Lib/test/test__interpreters.py
parent98dba73010e807e613b9400e8c4b411302498728 (diff)
downloadcpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.zip
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.gz
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.bz2
Fix typos in comments and docstring (#122720)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib/test/test__interpreters.py')
-rw-r--r--Lib/test/test__interpreters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test__interpreters.py b/Lib/test/test__interpreters.py
index beeb280..f493a92 100644
--- a/Lib/test/test__interpreters.py
+++ b/Lib/test/test__interpreters.py
@@ -43,7 +43,7 @@ def _run_output(interp, request):
def _wait_for_interp_to_run(interp, timeout=None):
# bpo-37224: Running this test file in multiprocesses will fail randomly.
# The failure reason is that the thread can't acquire the cpu to
- # run subinterpreter eariler than the main thread in multiprocess.
+ # run subinterpreter earlier than the main thread in multiprocess.
if timeout is None:
timeout = support.SHORT_TIMEOUT
for _ in support.sleeping_retry(timeout, error=False):