Skip to content

Commit fcd9e7d

Browse files
committed
remove EOFError/OSError except block
1 parent f7ee9b0 commit fcd9e7d

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Lib/multiprocessing/pool.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -590,9 +590,6 @@ def _handle_results(outqueue, get, cache):
590590
while 1:
591591
try:
592592
task = get()
593-
except (OSError, EOFError):
594-
util.debug('result handler got EOFError/OSError -- exiting')
595-
return
596593
except Exception as e:
597594
exc = RuntimeError("Result handler failed to get result from worker and " +
598595
"unable to recover. " +

0 commit comments

Comments
 (0)