@@ -171,8 +171,7 @@ _symtable symtablemodule.c
171
171
# math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
172
172
# _contextvars _contextvarsmodule.c # Context Variables
173
173
# _struct -DPy_BUILD_CORE_MODULE _struct.c # binary structure packing/unpacking
174
- # _weakref _weakref.c # basic weak reference support
175
- # _testcapi _testcapimodule.c # Python C API test module
174
+ # _testcapi _testcapimodule.c # Python C API test module; CANNOT be statically compiled!
176
175
# _testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module
177
176
# _random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator
178
177
# _elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
@@ -185,6 +184,9 @@ _symtable symtablemodule.c
185
184
# _json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
186
185
# _statistics _statisticsmodule.c # statistics accelerator
187
186
# _typing _typingmodule.c # typing accelerator
187
+ # _lsprof _lsprof.c rotatingtree.c # cProfile accelerators
188
+ # _opcode _opcode.c
189
+ # _queue _queuemodule.c -DPy_BUILD_CORE_MODULE
188
190
189
191
# unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN # static Unicode character database
190
192
@@ -197,6 +199,7 @@ _symtable symtablemodule.c
197
199
# spwd spwdmodule.c # spwd(3)
198
200
# grp grpmodule.c # grp(3)
199
201
# select selectmodule.c # select(2); not on ancient System V
202
+ # ossaudiodev ossaudiodev.c
200
203
201
204
# Memory-mapped files (also works on Win32).
202
205
# mmap mmapmodule.c
@@ -272,6 +275,10 @@ _symtable symtablemodule.c
272
275
# _blake module
273
276
# _blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c -DPy_BUILD_CORE_BUILTIN
274
277
278
+ # Compression
279
+ # _bz2 _bz2module.c -lbz2
280
+ # _lzma _lzmamodule.c -llzma
281
+
275
282
# The _tkinter module.
276
283
#
277
284
# The command for _tkinter is long and site specific. Please
@@ -373,6 +380,17 @@ _symtable symtablemodule.c
373
380
# Another example -- the 'xxsubtype' module shows C-level subtyping in action
374
381
xxsubtype xxsubtype.c
375
382
383
+ # Limited API examples
384
+ # xxlimited xxlimited.c
385
+ # xxlimited_35 xxlimited_35.c
386
+
387
+ # For testing
388
+ # _xxsubinterpreters _xxsubinterpretersmodule.c
389
+ # _xxtestfuzz _xxtestfuzz/_xxtestfuzz.c _xxtestfuzz/fuzzer.c
390
+ # _testbuffer _testbuffer.c
391
+ # _testimportmultiple _testimportmultiple.c
392
+ # _testmultiphase _testmultiphase.c
393
+
376
394
# Uncommenting the following line tells makesetup that all following modules
377
395
# are not built (see above for more detail).
378
396
#
0 commit comments