Message298036
> Specifically "the thread wasn't started by a subprocess"...
I'm talking about this check in Queue._start_thread() of multiprocessing.queues:
created_by_this_process = (self._opid == os.getpid())
if not self._joincancelled and not created_by_this_process:
self._jointhread = Finalize(
self._thread, Queue._finalize_join,
[weakref.ref(self._thread)],
exitpriority=-5
) |
|
Date |
User |
Action |
Args |
2017-07-10 09:15:35 | vstinner | set | recipients:
+ vstinner, pitrou, serhiy.storchaka, davin |
2017-07-10 09:15:35 | vstinner | set | messageid: <1499678135.09.0.597431521483.issue30171@psf.upfronthosting.co.za> |
2017-07-10 09:15:35 | vstinner | link | issue30171 messages |
2017-07-10 09:15:35 | vstinner | create | |
|