diff options
author | Heinz-Alexander Fuetterer <35225576+afuetterer@users.noreply.github.com> | 2023-09-20 16:58:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 16:58:23 (GMT) |
commit | ef6d475db3af4d30a3104fa6301dcd36c71eacab (patch) | |
tree | b103eebc681bc79f345aabbeaa7802c1d5eda093 /Lib/concurrent | |
parent | 32ffe58c1298b0082ff6fe96ad45c4efe49f4338 (diff) | |
download | cpython-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.py | 2 |
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 |