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 matrixise
Recipients Windson Yang, Zahash Z, matrixise
Date 2019-02-20.10:58:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550660321.39.0.147205339105.issue36049@roundup.psfhosted.org>
In-reply-to
Content
For this script, you could have the following output:

from queue import Queue
q = Queue()
print(repr(q))
q.put('a')
print(repr(q))
q.put('b')
print(repr(q))
q.put('c')
print(repr(q))


Queue()
Queue('a')
Queue('a','b')
Queue('a'...'c')
History
Date User Action Args
2019-02-20 10:58:41matrixisesetrecipients: + matrixise, Windson Yang, Zahash Z
2019-02-20 10:58:41matrixisesetmessageid: <1550660321.39.0.147205339105.issue36049@roundup.psfhosted.org>
2019-02-20 10:58:41matrixiselinkissue36049 messages
2019-02-20 10:58:41matrixisecreate