mirror of
https://github.com/python/cpython.git
synced 2025-08-24 02:35:59 +00:00
bpo-45548: add some missing entries to Modules/Setup
(GH-29115)
Also remove a duplicate entry for `_weakref`.
This commit is contained in:
parent
876fc7fcec
commit
dd86f63b55
2 changed files with 21 additions and 2 deletions
|
@ -0,0 +1 @@
|
||||||
|
Fill in missing entries in Modules/Setup.
|
|
@ -171,8 +171,7 @@ _symtable symtablemodule.c
|
||||||
#math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
|
#math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
|
||||||
#_contextvars _contextvarsmodule.c # Context Variables
|
#_contextvars _contextvarsmodule.c # Context Variables
|
||||||
#_struct -DPy_BUILD_CORE_MODULE _struct.c # binary structure packing/unpacking
|
#_struct -DPy_BUILD_CORE_MODULE _struct.c # binary structure packing/unpacking
|
||||||
#_weakref _weakref.c # basic weak reference support
|
#_testcapi _testcapimodule.c # Python C API test module; CANNOT be statically compiled!
|
||||||
#_testcapi _testcapimodule.c # Python C API test module
|
|
||||||
#_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module
|
#_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module
|
||||||
#_random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator
|
#_random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator
|
||||||
#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
|
#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
|
||||||
|
@ -185,6 +184,9 @@ _symtable symtablemodule.c
|
||||||
#_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
|
#_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
|
||||||
#_statistics _statisticsmodule.c # statistics accelerator
|
#_statistics _statisticsmodule.c # statistics accelerator
|
||||||
#_typing _typingmodule.c # typing accelerator
|
#_typing _typingmodule.c # typing accelerator
|
||||||
|
#_lsprof _lsprof.c rotatingtree.c # cProfile accelerators
|
||||||
|
#_opcode _opcode.c
|
||||||
|
#_queue _queuemodule.c -DPy_BUILD_CORE_MODULE
|
||||||
|
|
||||||
#unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN # static Unicode character database
|
#unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN # static Unicode character database
|
||||||
|
|
||||||
|
@ -197,6 +199,7 @@ _symtable symtablemodule.c
|
||||||
#spwd spwdmodule.c # spwd(3)
|
#spwd spwdmodule.c # spwd(3)
|
||||||
#grp grpmodule.c # grp(3)
|
#grp grpmodule.c # grp(3)
|
||||||
#select selectmodule.c # select(2); not on ancient System V
|
#select selectmodule.c # select(2); not on ancient System V
|
||||||
|
#ossaudiodev ossaudiodev.c
|
||||||
|
|
||||||
# Memory-mapped files (also works on Win32).
|
# Memory-mapped files (also works on Win32).
|
||||||
#mmap mmapmodule.c
|
#mmap mmapmodule.c
|
||||||
|
@ -272,6 +275,10 @@ _symtable symtablemodule.c
|
||||||
# _blake module
|
# _blake module
|
||||||
#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c -DPy_BUILD_CORE_BUILTIN
|
#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c -DPy_BUILD_CORE_BUILTIN
|
||||||
|
|
||||||
|
# Compression
|
||||||
|
#_bz2 _bz2module.c -lbz2
|
||||||
|
#_lzma _lzmamodule.c -llzma
|
||||||
|
|
||||||
# The _tkinter module.
|
# The _tkinter module.
|
||||||
#
|
#
|
||||||
# The command for _tkinter is long and site specific. Please
|
# The command for _tkinter is long and site specific. Please
|
||||||
|
@ -373,6 +380,17 @@ _symtable symtablemodule.c
|
||||||
# Another example -- the 'xxsubtype' module shows C-level subtyping in action
|
# Another example -- the 'xxsubtype' module shows C-level subtyping in action
|
||||||
xxsubtype xxsubtype.c
|
xxsubtype xxsubtype.c
|
||||||
|
|
||||||
|
# Limited API examples
|
||||||
|
#xxlimited xxlimited.c
|
||||||
|
#xxlimited_35 xxlimited_35.c
|
||||||
|
|
||||||
|
# For testing
|
||||||
|
#_xxsubinterpreters _xxsubinterpretersmodule.c
|
||||||
|
#_xxtestfuzz _xxtestfuzz/_xxtestfuzz.c _xxtestfuzz/fuzzer.c
|
||||||
|
#_testbuffer _testbuffer.c
|
||||||
|
#_testimportmultiple _testimportmultiple.c
|
||||||
|
#_testmultiphase _testmultiphase.c
|
||||||
|
|
||||||
# Uncommenting the following line tells makesetup that all following modules
|
# Uncommenting the following line tells makesetup that all following modules
|
||||||
# are not built (see above for more detail).
|
# are not built (see above for more detail).
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue