1return {
2 -- Modules/Setup
3 posix={'posixmodule.c'},
4 errno={'errnomodule.c'},
5 pwd={'pwdmodule.c'},
6 _sre={'_sre.c'},
7 _codecs={'_codecsmodule.c'},
8 _weakref={'_weakref.c'},
9 _functools={'_functoolsmodule.c'},
10 _operator={'_operator.c'},
11 _collections={'_collectionsmodule.c'},
12 _abc={'_abc.c'},
13 itertools={'itertoolsmodule.c'},
14 atexit={'atexitmodule.c'},
15 _signal={'signalmodule.c'},
16 _stat={'_stat.c'},
17 time={'timemodule.c'},
18 _thread={'_threadmodule.c'},
19 _locale={'_localemodule.c'},
20 _io={
21 '_io/_iomodule.c',
22 '_io/iobase.c',
23 '_io/fileio.c',
24 '_io/bytesio.c',
25 '_io/bufferedio.c',
26 '_io/textio.c',
27 '_io/stringio.c',
28 },
29 faulthandler={'faulthandler.c'},
30 _tracemalloc={'_tracemalloc.c'},
31 --_symtable={'symtablemodule.c'},
32 --xxsubtype={'xxsubtype.c'},
33
34 -- setup.py:/Extension
35 array={'arraymodule.c'},
36 _contextvars={'_contextvarsmodule.c'},
37 math={'mathmodule.c', '_math.c'},
38 cmath={'cmathmodule.c', '_math.c'},
39 -- time defined above
40 _datetime={'_datetimemodule.c'},
41 _zoneinfo={'_zoneinfo.c'},
42 _random={'_randommodule.c'},
43 _bisect={'_bisectmodule.c'},
44 _heapq={'_heapqmodule.c'},
45 _pickle={'_pickle.c'},
46 _json={'_json.c'},
47 --_lsprof={'_lsprof.c', 'rotatingtree.c'},
48 unicodedata={'unicodedata.c'},
49 _opcode={'_opcode.c'},
50 _asyncio={'_asynciomodule.c'},
51 _abc={'_abc.c'},
52 _queue={'_queuemodule.c'},
53 _statistics={'_statisticsmodule.c'},
54 fcntl={'fcntlmodule.c'},
55 -- pwd defined above
56 grp={'grpmodule.c'},
57 spwd={'spwdmodule.c'},
58 select={'selectmodule.c'},
59 mmap={'mmapmodule.c'},
60 --syslog={'syslogmodule.c'},
61 --_xxsubinterpreters={'_xxsubinterpretersmodule.c'},
62 --audioop={'audioop.c'},
63 _csv={'_csv.c'},
64 _posixsubprocess={'_posixsubprocess.c'},
65 --_testcapi={'_testcapimodule.c'},
66 --_testinternalcapi={'_testinternalcapi.c'},
67 --_testbuffer={'_testbuffer.c'},
68 --_testimportmultiple={'_testimportmultiple.c'},
69 --_testmultiphase={'_testmultiphase.c'},
70 --_xxtestfuzz={'_xxtestfuzz/_xxtestfuzz.c', '_xxtestfuzz/fuzzer.c'},
71 --readline={'readline.c'},
72 --_curses={'_cursesmodule.c'},
73 --_curses_panel={'_curses_panel.c'},
74 _crypt={'_cryptmodule.c'},
75 _socket={'socketmodule.c'},
76 --_dbm={'_dbmmodule.c'},
77 --_gdbm={'_gdbmmodule.c'},
78 --_sqlite3={'_sqlite/cache.c', '_sqlite/connection.c', '_sqlite/cursor.c', '_sqlite/microprotocols.c', '_sqlite/module.c', '_sqlite/prepare_protocol.c', '_sqlite/row.c', '_sqlite/statement.c', '_sqlite/util.c'},
79 termios={'termios.c'},
80 resource={'resource.c'},
81 --ossaudiodev={'ossaudiodev.c'},
82 --_scproxy={'_scproxy.c'},
83 zlib={'zlibmodule.c'},
84 binascii={'binascii.c'},
85 --_bz2={'_bz2module.c'},
86 --_lzma={'_lzmamodule.c'},
87 pyexpat={'pyexpat.c'},
88 --_elementtree={'_elementtree.c'},
89 --_multibytecodec={'cjkcodecs/multibytecodec.c'},
90 --_codecs_kr={'cjkcodecs/_codecs_kr.c'},
91 --_codecs_jp={'cjkcodecs/_codecs_jp.c'},
92 --_codecs_cn={'cjkcodecs/_codecs_cn.c'},
93 --_codecs_tw={'cjkcodecs/_codecs_tw.c'},
94 --_codecs_hk={'cjkcodecs/_codecs_hk.c'},
95 --_codecs_iso2022={'cjkcodecs/_codecs_iso2022.c'},
96 _multiprocessing={'_multiprocessing/multiprocessing.c', '_multiprocessing/semaphore.c'},
97 _posixshmem={'_multiprocessing/posixshmem.c'},
98 --_uuid={'_uuidmodule.c'},
99 --xxlimited={'xxlimited.c'},
100 --xxlimited_35={'xxlimited_35.c'},
101 --_tkinter={'_tkinter.c', 'tkappinit.c'},
102 --_ctypes={'_ctypes/_ctypes.c', '_ctypes/callbacks.c', '_ctypes/callproc.c', '_ctypes/stgdict.c', '_ctypes/cfield.c'},
103 --_ctypes_test={'_ctypes/_ctypes_test.c'},
104 --_decimal={'_decimal/_decimal.c'},
105 _ssl={'_ssl.c'},
106 _hashlib={'_hashbearssl.c'},
107 --_sha256={'sha256module.c'},
108 --_sha512={'sha512module.c'},
109 --_md5={'md5module.c'},
110 --_sha1={'sha1module.c'},
111 _blake2={'_blake2/blake2module.c', '_blake2/blake2b_impl.c', '_blake2/blake2s_impl.c'},
112 _sha3={'_sha3/sha3module.c'},
113 --nis={'nismodule.c'},
114 _struct={'_struct.c'},
115}