[issue42420] queue.Queue().join() add a timeout option

2020-11-20 Thread Gerhard van Andel
Change by Gerhard van Andel : -- keywords: +patch pull_requests: +22323 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23432 ___ Python tracker <https://bugs.python.org/issu

[issue42420] queue.Queue().join() add a timeout option

2020-11-20 Thread Gerhard van Andel
New submission from Gerhard van Andel : class Queue: def join(): ... # Can we add a timeout option to the join method on queue.Queue def join(timeout=None): '''Blocks until all items in the Queue have been gotten and processed. The count of u