summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/_queuemodule.c.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. ↵Serhiy Storchaka2019-03-141-10/+45
| | | | (GH-12058)
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ↵Serhiy Storchaka2018-11-271-4/+4
| | | | | | | | (GH-6748) Fix invalid function cast warnings with gcc 8 for method conventions different from METH_NOARGS, METH_O and METH_VARARGS in Argument Clinic generated code.
* bpo-14976: Reentrant simple queue (#3346)Antoine Pitrou2018-01-151-0/+218
Add a queue.SimpleQueue class, an unbounded FIFO queue with a reentrant C implementation of put().