summaryrefslogtreecommitdiffstats
path: root/Modules/_queuemodule.c
Commit message (Collapse)AuthorAgeFilesLines
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-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.. (cherry picked from commit 0e0bc4e221f592f305d335faf5f8046484eb9238) Co-authored-by: Peter Eisentraut <peter@eisentraut.org>
* Make PySimpleQueueType static. (GH-8175)Miss Islington (bot)2018-07-071-2/+2
| | | | | (cherry picked from commit 9b50a7f29b761920c04d8c3435d216145da15311) Co-authored-by: Benjamin Peterson <benjamin@python.org>
* 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().