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 josh.r
Recipients asvetlov, esrse, josh.r, yselivanov
Date 2019-11-21.03:36:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1574307390.52.0.784558427485.issue38874@roundup.psfhosted.org>
In-reply-to
Content
The items that haven't finished the put aren't actually "in" the queue yet, so I don't see how non-FIFO order of insertion violates any FIFO guarantees for the contents of the queue; until the items are actually "in", they're not sequenced for the purposes of when they come "out". Mandating such a guarantee effectively means orchestrating a queue with a real maxsize equal to the configured maxsize plus the total number of coroutines competing to put items into it.

The guarantee is still being met here; once an item is put, it will be "get"-ed after anything that finished put-ing before it, and before anything that finished put-ing after it.
History
Date User Action Args
2019-11-21 03:36:30josh.rsetrecipients: + josh.r, asvetlov, yselivanov, esrse
2019-11-21 03:36:30josh.rsetmessageid: <1574307390.52.0.784558427485.issue38874@roundup.psfhosted.org>
2019-11-21 03:36:30josh.rlinkissue38874 messages
2019-11-21 03:36:30josh.rcreate