mirror of
https://github.com/python/cpython.git
synced 2025-08-28 04:35:02 +00:00
bpo-14976: Reentrant simple queue (#3346)
Add a queue.SimpleQueue class, an unbounded FIFO queue with a reentrant C implementation of put().
This commit is contained in:
parent
5ec0feeeec
commit
94e1696d04
12 changed files with 1125 additions and 12 deletions
2
setup.py
2
setup.py
|
@ -699,6 +699,8 @@ class PyBuildExt(build_ext):
|
|||
exts.append( Extension('_opcode', ['_opcode.c']) )
|
||||
# asyncio speedups
|
||||
exts.append( Extension("_asyncio", ["_asynciomodule.c"]) )
|
||||
# _queue module
|
||||
exts.append( Extension("_queue", ["_queuemodule.c"]) )
|
||||
|
||||
# Modules with some UNIX dependencies -- on by default:
|
||||
# (If you have a really backward UNIX, select and socket may not be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue