Skip to content

Commit a694b82

Browse files
authored
Fix typo in exception message in multiprocessing.pool (#99900)
1 parent ac12e39 commit a694b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/multiprocessing/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def _terminate_pool(cls, taskqueue, inqueue, outqueue, pool, change_notifier,
696696

697697
if (not result_handler.is_alive()) and (len(cache) != 0):
698698
raise AssertionError(
699-
"Cannot have cache with result_hander not alive")
699+
"Cannot have cache with result_handler not alive")
700700

701701
result_handler._state = TERMINATE
702702
change_notifier.put(None)

0 commit comments

Comments
 (0)