mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
bpo-45847: Port _lfprof, _opcode, _asyncio, _queue, _statistics, and _typing to PY_STDLIB_MOD_SIMPLE (GH-29690)
Automerge-Triggered-By: GH:tiran
This commit is contained in:
parent
512dbf6f56
commit
39f7d2ff01
4 changed files with 192 additions and 66 deletions
18
setup.py
18
setup.py
|
@ -1015,19 +1015,17 @@ class PyBuildExt(build_ext):
|
|||
self.addext(Extension("_json", ["_json.c"]))
|
||||
|
||||
# profiler (_lsprof is for cProfile.py)
|
||||
self.add(Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']))
|
||||
self.addext(Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']))
|
||||
# static Unicode character database
|
||||
self.addext(Extension('unicodedata', ['unicodedata.c']))
|
||||
# _opcode module
|
||||
self.add(Extension('_opcode', ['_opcode.c']))
|
||||
self.addext(Extension('_opcode', ['_opcode.c']))
|
||||
|
||||
# asyncio speedups
|
||||
self.add(Extension("_asyncio", ["_asynciomodule.c"]))
|
||||
# _queue module
|
||||
self.add(Extension("_queue", ["_queuemodule.c"]))
|
||||
# _statistics module
|
||||
self.add(Extension("_statistics", ["_statisticsmodule.c"]))
|
||||
# _typing module
|
||||
self.add(Extension("_typing", ["_typingmodule.c"]))
|
||||
self.addext(Extension("_asyncio", ["_asynciomodule.c"]))
|
||||
|
||||
self.addext(Extension("_queue", ["_queuemodule.c"]))
|
||||
self.addext(Extension("_statistics", ["_statisticsmodule.c"]))
|
||||
self.addext(Extension("_typing", ["_typingmodule.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