diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2023-06-27 00:21:12 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-07-21 18:48:29 +1000 |
commit | add1200343e59774d2b168cc2ff1ab8ae5660489 (patch) | |
tree | 368b26c6f61cac919f5cedfed633dcc561eedaa4 /tests/run-natmodtests.py | |
parent | 9fb56d15627e831f315e8afcbd5115c5506b10e0 (diff) | |
download | micropython-add1200343e59774d2b168cc2ff1ab8ae5660489.tar.gz micropython-add1200343e59774d2b168cc2ff1ab8ae5660489.zip |
all: Remove the zlib module.
This will be replaced with a new deflate module providing the same
functionality, with an optional frozen Python wrapper providing a
replacement zlib module.
binascii.crc32 is temporarily disabled.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tests/run-natmodtests.py')
-rwxr-xr-x | tests/run-natmodtests.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/run-natmodtests.py b/tests/run-natmodtests.py index 16f8fde967..ce4f941350 100755 --- a/tests/run-natmodtests.py +++ b/tests/run-natmodtests.py @@ -25,7 +25,6 @@ TEST_MAPPINGS = { "heapq": "heapq/heapq_$(ARCH).mpy", "random": "random/random_$(ARCH).mpy", "re": "re/re_$(ARCH).mpy", - "zlib": "zlib/zlib_$(ARCH).mpy", } # Code to allow a target MicroPython to import an .mpy from RAM |