[issue26294] Queue().unfinished_tasks not in docs - deliberate?

2016-02-07 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker ___

[issue26294] Queue().unfinished_tasks not in docs - deliberate?

2016-02-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: Just as you thought, the 'unfinished_tasks' attribute not intended to be part of the public API for queues. -- resolution: -> not a bug status: open -> closed ___ Python tracker

[issue26294] Queue().unfinished_tasks not in docs - deliberate?

2016-02-05 Thread Frank Millman
New submission from Frank Millman: dir(queue.Queue()) shows an attribute 'unfinished_tasks'. It appears to be the counter referred to in the docs to 'join()', but it is not documented itself. I would like to make use of it, but I don't know if it is part of the official API for this module.