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