[issue34367] AsyncResult.get() only notifies one thread

2021-05-10 Thread Irit Katriel
Irit Katriel added the comment: Fixed in Python 3 and Python 2 is past EOL. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___

[issue34367] AsyncResult.get() only notifies one thread

2018-08-09 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue34367] AsyncResult.get() only notifies one thread

2018-08-09 Thread Alexander Tsvetkov
New submission from Alexander Tsvetkov : If more than one thread is waiting for the multiprocessing.pool.AsyncResult (aka ApplyResult) returned from apply_async, only one thread will be notified once the result arrives. It happens because AsyncResult._set calls notify upon the result arrival,