This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Chris Seto
Recipients Chris Seto, gvanrossum, vstinner, yselivanov
Date 2015-11-17.00:37:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1447720653.5.0.538430267197.issue25642@psf.upfronthosting.co.za>
In-reply-to
Content
When maxsize is set on a JoinableQueue/Queue and the queue is full (maxsize <= len(queue)) _put is called rather than __put_internal.
__put_internal increments _unfinished_tasks but _put does not.
Whenever using maxsize in a Queue calling task_done will almost always cause a ValueError('task_done() called too many times').
History
Date User Action Args
2015-11-17 00:37:33Chris Setosetrecipients: + Chris Seto, gvanrossum, vstinner, yselivanov
2015-11-17 00:37:33Chris Setosetmessageid: <1447720653.5.0.538430267197.issue25642@psf.upfronthosting.co.za>
2015-11-17 00:37:33Chris Setolinkissue25642 messages
2015-11-17 00:37:33Chris Setocreate