summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/_queuemodule.c.h
Commit message (Collapse)AuthorAgeFilesLines
* [3.10] gh-91583: AC: Fix regression for functions with defining_class ↵Serhiy Storchaka2022-05-031-15/+24
| | | | | | | | (GH-91739) (GH-92079) Argument Clinic now generates the same efficient code as before adding the defining_class parameter. (cherry picked from commit a055dac0b45031878a8196a8735522de018491e3)
* bpo-40077: Convert _queuemodule to use heap types (GH-23136)Erlend Egeberg Aasland2020-11-071-31/+27
| | | @vstinner / @corona10, would you mind reviewing this?
* 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().