summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorHeinz-Alexander Fuetterer <35225576+afuetterer@users.noreply.github.com>2023-09-20 16:58:23 (GMT)
committerGitHub <noreply@github.com>2023-09-20 16:58:23 (GMT)
commitef6d475db3af4d30a3104fa6301dcd36c71eacab (patch)
treeb103eebc681bc79f345aabbeaa7802c1d5eda093 /Lib/concurrent
parent32ffe58c1298b0082ff6fe96ad45c4efe49f4338 (diff)
downloadcpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.zip
cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.gz
cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.bz2
Fix typos in docs and comments (#109619)
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py
index f4b5cd1..fba19d3 100644
--- a/Lib/concurrent/futures/process.py
+++ b/Lib/concurrent/futures/process.py
@@ -495,7 +495,7 @@ class _ExecutorManagerThread(threading.Thread):
# set_exception() fails if the future is cancelled: ignore it.
# Trying to check if the future is cancelled before calling
# set_exception() would leave a race condition if the future is
- # cancelled betwen the check and set_exception().
+ # cancelled between the check and set_exception().
pass
# Delete references to object. See issue16284
del work_item