Jesse Noller <[EMAIL PROTECTED]> added the comment:

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))

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3789>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to