logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git

modules.lua (3781B)


  1. return {
  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. -- setup.py:/Extension
  34. array={'arraymodule.c'},
  35. _contextvars={'_contextvarsmodule.c'},
  36. math={'mathmodule.c', '_math.c'},
  37. cmath={'cmathmodule.c', '_math.c'},
  38. -- time defined above
  39. _datetime={'_datetimemodule.c'},
  40. _zoneinfo={'_zoneinfo.c'},
  41. _random={'_randommodule.c'},
  42. _bisect={'_bisectmodule.c'},
  43. _heapq={'_heapqmodule.c'},
  44. _pickle={'_pickle.c'},
  45. _json={'_json.c'},
  46. --_lsprof={'_lsprof.c', 'rotatingtree.c'},
  47. unicodedata={'unicodedata.c'},
  48. _opcode={'_opcode.c'},
  49. _asyncio={'_asynciomodule.c'},
  50. _abc={'_abc.c'},
  51. _queue={'_queuemodule.c'},
  52. _statistics={'_statisticsmodule.c'},
  53. fcntl={'fcntlmodule.c'},
  54. -- pwd defined above
  55. grp={'grpmodule.c'},
  56. spwd={'spwdmodule.c'},
  57. select={'selectmodule.c'},
  58. mmap={'mmapmodule.c'},
  59. --syslog={'syslogmodule.c'},
  60. --_xxsubinterpreters={'_xxsubinterpretersmodule.c'},
  61. --audioop={'audioop.c'},
  62. _csv={'_csv.c'},
  63. _posixsubprocess={'_posixsubprocess.c'},
  64. --_testcapi={'_testcapimodule.c'},
  65. --_testinternalcapi={'_testinternalcapi.c'},
  66. --_testbuffer={'_testbuffer.c'},
  67. --_testimportmultiple={'_testimportmultiple.c'},
  68. --_testmultiphase={'_testmultiphase.c'},
  69. --_xxtestfuzz={'_xxtestfuzz/_xxtestfuzz.c', '_xxtestfuzz/fuzzer.c'},
  70. --readline={'readline.c'},
  71. --_curses={'_cursesmodule.c'},
  72. --_curses_panel={'_curses_panel.c'},
  73. _crypt={'_cryptmodule.c'},
  74. _socket={'socketmodule.c'},
  75. --_dbm={'_dbmmodule.c'},
  76. --_gdbm={'_gdbmmodule.c'},
  77. --_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'},
  78. termios={'termios.c'},
  79. resource={'resource.c'},
  80. --ossaudiodev={'ossaudiodev.c'},
  81. --_scproxy={'_scproxy.c'},
  82. zlib={'zlibmodule.c'},
  83. binascii={'binascii.c'},
  84. --_bz2={'_bz2module.c'},
  85. --_lzma={'_lzmamodule.c'},
  86. pyexpat={'pyexpat.c'},
  87. --_elementtree={'_elementtree.c'},
  88. --_multibytecodec={'cjkcodecs/multibytecodec.c'},
  89. --_codecs_kr={'cjkcodecs/_codecs_kr.c'},
  90. --_codecs_jp={'cjkcodecs/_codecs_jp.c'},
  91. --_codecs_cn={'cjkcodecs/_codecs_cn.c'},
  92. --_codecs_tw={'cjkcodecs/_codecs_tw.c'},
  93. --_codecs_hk={'cjkcodecs/_codecs_hk.c'},
  94. --_codecs_iso2022={'cjkcodecs/_codecs_iso2022.c'},
  95. _multiprocessing={'_multiprocessing/multiprocessing.c', '_multiprocessing/semaphore.c'},
  96. _posixshmem={'_multiprocessing/posixshmem.c'},
  97. --_uuid={'_uuidmodule.c'},
  98. --xxlimited={'xxlimited.c'},
  99. --xxlimited_35={'xxlimited_35.c'},
  100. --_tkinter={'_tkinter.c', 'tkappinit.c'},
  101. --_ctypes={'_ctypes/_ctypes.c', '_ctypes/callbacks.c', '_ctypes/callproc.c', '_ctypes/stgdict.c', '_ctypes/cfield.c'},
  102. --_ctypes_test={'_ctypes/_ctypes_test.c'},
  103. --_decimal={'_decimal/_decimal.c'},
  104. _ssl={'_ssl.c'},
  105. _hashlib={'_hashbearssl.c'},
  106. --_sha256={'sha256module.c'},
  107. --_sha512={'sha512module.c'},
  108. --_md5={'md5module.c'},
  109. --_sha1={'sha1module.c'},
  110. _blake2={'_blake2/blake2module.c', '_blake2/blake2b_impl.c', '_blake2/blake2s_impl.c'},
  111. _sha3={'_sha3/sha3module.c'},
  112. --nis={'nismodule.c'},
  113. _struct={'_struct.c'},
  114. }