summaryrefslogtreecommitdiffstats
path: root/Modules/_queuemodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix misleading mentions of tp_size in comments (GH-9093)Peter Eisentraut2018-09-101-1/+1
| | | | Many type object initializations labeled a field "tp_size" in the comment, but the name of that field is tp_basicsize.
* Make PySimpleQueueType static. (GH-8175)Benjamin Peterson2018-07-071-2/+2
|
* bpo-14976: Reentrant simple queue (#3346)Antoine Pitrou2018-01-151-0/+400
Add a queue.SimpleQueue class, an unbounded FIFO queue with a reentrant C implementation of put().