Dan Willemsen | b3614d2 | 2019-10-07 16:06:34 -0700 | [diff] [blame] | 1 | # These come from looking through setup.py |
| 2 | |
| 3 | array arraymodule.c |
| 4 | cmath cmathmodule.c _math.c |
| 5 | math mathmodule.c _math.c |
| 6 | _contextvars _contextvarsmodule.c |
| 7 | time timemodule.c |
| 8 | _datetime _datetimemodule.c |
Haibo Huang | 5bb95e9 | 2021-01-14 11:35:14 -0800 | [diff] [blame] | 9 | _zoneinfo _zoneinfo.c |
Dan Willemsen | b3614d2 | 2019-10-07 16:06:34 -0700 | [diff] [blame] | 10 | _random _randommodule.c |
| 11 | _bisect _bisectmodule.c |
| 12 | _heapq _heapqmodule.c |
| 13 | _pickle _pickle.c |
| 14 | atexit atexitmodule.c |
| 15 | _json _json.c |
| 16 | _lsprof _lsprof.c rotatingtree.c |
| 17 | unicodedata unicodedata.c |
| 18 | _opcode _opcode.c |
| 19 | _asyncio _asynciomodule.c |
| 20 | _abc _abc.c |
| 21 | _queue _queuemodule.c |
| 22 | _statistics _statisticsmodule.c |
| 23 | fcntl fcntlmodule.c |
| 24 | pwd pwdmodule.c |
| 25 | grp grpmodule.c |
| 26 | select selectmodule.c |
| 27 | parser parsermodule.c |
| 28 | mmap mmapmodule.c |
| 29 | syslog syslogmodule.c |
| 30 | _xxsubinterpreters _xxsubinterpretersmodule.c |
| 31 | _csv _csv.c |
| 32 | _posixsubprocess _posixsubprocess.c |
| 33 | _socket socketmodule.c |
| 34 | termios termios.c |
| 35 | resource resource.c |
| 36 | zlib zlibmodule.c |
| 37 | binascii binascii.c |
| 38 | pyexpat pyexpat.c |
| 39 | _multibytecodec cjkcodecs/multibytecodec.c |
| 40 | _codecs_kr cjkcodecs/_codecs_kr.c |
| 41 | _codecs_jp cjkcodecs/_codecs_jp.c |
| 42 | _codecs_cn cjkcodecs/_codecs_cn.c |
| 43 | _codecs_tw cjkcodecs/_codecs_tw.c |
| 44 | _codecs_hk cjkcodecs/_codecs_hk.c |
| 45 | _codecs_iso2022 cjkcodecs/_codecs_iso2022.c |
| 46 | |
| 47 | _multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c |
| 48 | |
| 49 | _ctypes _ctypes/_ctypes.c _ctypes/callbacks.c _ctypes/callproc.c _ctypes/stgdict.c _ctypes/cfield.c |
| 50 | |
| 51 | # TODO: get this working with boringssl |
| 52 | #_ssl _ssl.c _ssl/debughelpers.c |
| 53 | #_hashlib _hashopenssl.c |
| 54 | |
Jan Monsch | 418f68d | 2020-04-15 19:47:09 +0200 | [diff] [blame] | 55 | _blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c |
Dan Willemsen | b3614d2 | 2019-10-07 16:06:34 -0700 | [diff] [blame] | 56 | _md5 md5module.c |
| 57 | _sha1 sha1module.c |
Jan Monsch | 418f68d | 2020-04-15 19:47:09 +0200 | [diff] [blame] | 58 | _sha256 sha256module.c |
| 59 | _sha512 sha512module.c |
| 60 | _sha3 _sha3/sha3module.c |
Dan Willemsen | b3614d2 | 2019-10-07 16:06:34 -0700 | [diff] [blame] | 61 | |
| 62 | _struct _struct.c |