summaryrefslogtreecommitdiff
path: root/pkg/python/modules.lua
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-10-18 00:16:25 -0700
committerMichael Forney <mforney@mforney.org>2019-10-18 00:17:21 -0700
commitfe9c89c185c549170603c9736752e1d0f6105881 (patch)
treedfd03517bebc815c2fe9c3320386cf39108a43b5 /pkg/python/modules.lua
parent6441ad4fcabfc8a66d004c56e20a347c5eeef3d6 (diff)
python: Update to 3.8.0
Diffstat (limited to 'pkg/python/modules.lua')
-rw-r--r--pkg/python/modules.lua64
1 files changed, 33 insertions, 31 deletions
diff --git a/pkg/python/modules.lua b/pkg/python/modules.lua
index 48ecdf5a..93b978ba 100644
--- a/pkg/python/modules.lua
+++ b/pkg/python/modules.lua
@@ -1,21 +1,21 @@
return {
- -- Setup.dist
- posix={'posixmodule.c', core=true},
+ -- Modules/Setup
+ posix={'posixmodule.c'},
errno={'errnomodule.c'},
pwd={'pwdmodule.c'},
_sre={'_sre.c'},
_codecs={'_codecsmodule.c'},
_weakref={'_weakref.c'},
- _functools={'_functoolsmodule.c', core=true},
+ _functools={'_functoolsmodule.c'},
_operator={'_operator.c'},
_collections={'_collectionsmodule.c'},
_abc={'_abc.c'},
itertools={'itertoolsmodule.c'},
atexit={'atexitmodule.c'},
- _signal={'signalmodule.c', core=true},
+ _signal={'signalmodule.c'},
_stat={'_stat.c'},
- time={'timemodule.c', core=true},
- _thread={'_threadmodule.c', core=true},
+ time={'timemodule.c'},
+ _thread={'_threadmodule.c'},
_locale={'_localemodule.c'},
_io={
'_io/_iomodule.c',
@@ -25,9 +25,7 @@ return {
'_io/bufferedio.c',
'_io/textio.c',
'_io/stringio.c',
- core=true,
},
- zipimport={'zipimport.c', core=true},
faulthandler={'faulthandler.c'},
_tracemalloc={'_tracemalloc.c', 'hashtable.c'},
--_symtable={'symtablemodule.c'},
@@ -36,8 +34,8 @@ return {
-- setup.py:/Extension
array={'arraymodule.c'},
_contextvars={'_contextvarsmodule.c'},
- cmath={'cmathmodule.c', '_math.c'},
math={'mathmodule.c', '_math.c'},
+ cmath={'cmathmodule.c', '_math.c'},
-- time defined above
_datetime={'_datetimemodule.c'},
_random={'_randommodule.c'},
@@ -46,16 +44,13 @@ return {
_pickle={'_pickle.c'},
-- atexit defined above
_json={'_json.c'},
- --_testcapi={'_testcapimodule.c'},
- --_testbuffer={'_testbuffer.c'},
- --_testimportmultiple={'_testimportmultiple.c'},
- --_testmultiphase={'_testmultiphase.c'},
--_lsprof={'_lsprof.c', 'rotatingtree.c'},
unicodedata={'unicodedata.c'},
_opcode={'_opcode.c'},
_asyncio={'_asynciomodule.c'},
_abc={'_abc.c'},
_queue={'_queuemodule.c'},
+ _statistics={'_statisticsmodule.c'},
fcntl={'fcntlmodule.c'},
-- pwd defined above
grp={'grpmodule.c'},
@@ -64,29 +59,28 @@ return {
parser={'parsermodule.c'},
mmap={'mmapmodule.c'},
--syslog={'syslogmodule.c'},
- --_xxtestfuzz={'_xxtestfuzz/_xxtestfuzz.c', '_xxtestfuzz/fuzzer.c'},
+ --_xxsubinterpreters={'_xxsubinterpretersmodule.c'},
--audioop={'audioop.c'},
- --readline={'readline.c'},
- _crypt={'_cryptmodule.c'},
_csv={'_csv.c'},
_posixsubprocess={'_posixsubprocess.c'},
+ --_testcapi={'_testcapimodule.c'},
+ --_testinternalcapi={'_testinternalcapi.c'},
+ --_testbuffer={'_testbuffer.c'},
+ --_testimportmultiple={'_testimportmultiple.c'},
+ --_testmultiphase={'_testmultiphase.c'},
+ --_xxtestfuzz={'_xxtestfuzz/_xxtestfuzz.c', '_xxtestfuzz/fuzzer.c'},
+ --readline={'readline.c'},
+ --_curses={'_cursesmodule.c'},
+ --_curses_panel={'_curses_panel.c'},
+ _crypt={'_cryptmodule.c'},
_socket={'socketmodule.c'},
- _ssl={'_ssl.c'},
- _hashlib={'_hashopenssl.c'},
- --_sha256={'sha256module.c'},
- --_sha512={'sha512module.c'},
- --_md5={'md5module.c'},
- --_sha1={'sha1module.c'},
- _blake2={'_blake2/blake2module.c', '_blake2/blake2b_impl.c', '_blake2/blake2s_impl.c'},
- _sha3={'_sha3/sha3module.c'},
- --_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'},
--_dbm={'_dbmmodule.c'},
--_gdbm={'_gdbmmodule.c'},
+ --_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'},
termios={'termios.c'},
resource={'resource.c'},
- --nis={'nismodule.c'},
- --_curses={'_cursesmodule.c'},
- --_curses_panel={'_curses_panel.c'},
+ --ossaudiodev={'ossaudiodev.c'},
+ --_scproxy={'_scproxy.c'},
zlib={'zlibmodule.c'},
binascii={'binascii.c'},
--_bz2={'_bz2module.c'},
@@ -100,14 +94,22 @@ return {
--_codecs_tw={'cjkcodecs/_codecs_tw.c'},
--_codecs_hk={'cjkcodecs/_codecs_hk.c'},
--_codecs_iso2022={'cjkcodecs/_codecs_iso2022.c'},
+ _posixshmem={'_multiprocessing/posixshmem.c'},
_multiprocessing={'_multiprocessing/multiprocessing.c', '_multiprocessing/semaphore.c'},
- --ossaudiodev={'ossaudiodev.c'},
- --_scproxy={'_scproxy.c'},
+ --_uuid={'_uuidmodule.c'},
--xxlimited={'xxlimited.c'},
--_tkinter={'_tkinter.c', 'tkappinit.c'},
- --_uuid={'_uuidmodule.c'},
--_ctypes={'_ctypes/_ctypes.c', '_ctypes/callbacks.c', '_ctypes/callproc.c', '_ctypes/stgdict.c', '_ctypes/cfield.c'},
--_ctypes_test={'_ctypes/_ctypes_test.c'},
--_decimal={'_decimal/_decimal.c'},
+ _ssl={'_ssl.c'},
+ _hashlib={'_hashopenssl.c'},
+ --_sha256={'sha256module.c'},
+ --_sha512={'sha512module.c'},
+ --_md5={'md5module.c'},
+ --_sha1={'sha1module.c'},
+ _blake2={'_blake2/blake2module.c', '_blake2/blake2b_impl.c', '_blake2/blake2s_impl.c'},
+ _sha3={'_sha3/sha3module.c'},
+ --nis={'nismodule.c'},
_struct={'_struct.c'},
}