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 jnoller
Recipients DavidDecotigny, jnoller
Date 2008-09-06.01:16:24
SpamBayes Score 0.009768271
Marked as misclassified No
Message-id <1220663785.72.0.150113888463.issue3789@psf.upfronthosting.co.za>
In-reply-to
Content
In a later release, I'd like to massage this in such a way that you do not 
have to wait for a child queue to be drained prior to calling join.

One way to work around this David, is to call Queue.cancel_join_thread():

def f(datasize, q):
    q.cancel_join_thread()
    q.put(range(datasize))
History
Date User Action Args
2008-09-06 01:16:25jnollersetrecipients: + jnoller, DavidDecotigny
2008-09-06 01:16:25jnollersetmessageid: <1220663785.72.0.150113888463.issue3789@psf.upfronthosting.co.za>
2008-09-06 01:16:24jnollerlinkissue3789 messages
2008-09-06 01:16:24jnollercreate