[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2021-09-21 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2019-03-01 Thread STINNER Victor
STINNER Victor added the comment: Pablo: since you worked on multiprocessing recently, did you see this bug? I'm not sure about my PR 11139... If someone else wants to work on a fix, ignore my PR ;-) -- nosy: +davin, pitrou ___ Python tracker

[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2018-12-14 Thread STINNER Victor
STINNER Victor added the comment: Attached PR 11139 sets RuntimeError("Pool terminated") error in pending results if the pool is terminated. -- ___ Python tracker ___ ___

[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2018-12-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10370 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2018-12-12 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +10369 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue35478] multiprocessing: ApplyResult.get() hangs if the pool is terminated

2018-12-12 Thread STINNER Victor
New submission from STINNER Victor : The following code hangs: --- import multiprocessing, time pool = multiprocessing.Pool(1) result = pool.apply_async(time.sleep, (1.0,)) pool.terminate() result.get() --- pool.terminate() terminates workers before time.sleep(1.0) completes, but the pool does