diff options
author | algonell <algonell@gmail.com> | 2024-09-09 12:58:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 12:58:26 (GMT) |
commit | 9017b95ff2dcff16bcb0b0a609ed2b0daa845943 (patch) | |
tree | b7585aa38d40524cd8a0244f5577e50c0ffaaf07 /Lib/test/test_concurrent_futures/test_deadlock.py | |
parent | df4f0cbfad8a1ed0146cabd30d01efd135d4d048 (diff) | |
download | cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.zip cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.gz cpython-9017b95ff2dcff16bcb0b0a609ed2b0daa845943.tar.bz2 |
Fix typos (#123775)
Diffstat (limited to 'Lib/test/test_concurrent_futures/test_deadlock.py')
-rw-r--r-- | Lib/test/test_concurrent_futures/test_deadlock.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_concurrent_futures/test_deadlock.py b/Lib/test/test_concurrent_futures/test_deadlock.py index f60465f..ee58975 100644 --- a/Lib/test/test_concurrent_futures/test_deadlock.py +++ b/Lib/test/test_concurrent_futures/test_deadlock.py @@ -145,7 +145,7 @@ class ExecutorDeadlockTest: self._check_crash(BrokenProcessPool, id, ExitAtUnpickle()) def test_error_at_task_unpickle(self): - # gh-109832: Restore stderr overriden by _raise_error_ignore_stderr() + # gh-109832: Restore stderr overridden by _raise_error_ignore_stderr() self.addCleanup(setattr, sys, 'stderr', sys.stderr) # Check problem occurring while unpickling a task on workers @@ -183,7 +183,7 @@ class ExecutorDeadlockTest: self._check_crash(PicklingError, _return_instance, ErrorAtPickle) def test_error_during_result_unpickle_in_result_handler(self): - # gh-109832: Restore stderr overriden by _raise_error_ignore_stderr() + # gh-109832: Restore stderr overridden by _raise_error_ignore_stderr() self.addCleanup(setattr, sys, 'stderr', sys.stderr) # Check problem occurring while unpickling a task in |