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 ppperry
Recipients kbk, ppperry, roger.serwy, terry.reedy
Date 2015-06-02.22:01:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433282516.0.0.734944540805.issue24252@psf.upfronthosting.co.za>
In-reply-to
Content
This problem also occurs in other situati, such as when trying to get items from an empty queue
>>> import Queue
>>> Q = Queue.Queue()
>>> q.get_nowait()
Traceback (most recent call last):
  File "<pyshell#16>", line 1, in <module>
    q.get_nowait()
Empty
In that case, it doesn't really matter, though.
History
Date User Action Args
2015-06-02 22:01:56ppperrysetrecipients: + ppperry, terry.reedy, kbk, roger.serwy
2015-06-02 22:01:56ppperrysetmessageid: <1433282516.0.0.734944540805.issue24252@psf.upfronthosting.co.za>
2015-06-02 22:01:55ppperrylinkissue24252 messages
2015-06-02 22:01:55ppperrycreate