Skip to content

Commit 3ba81c3

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents d0da2de + 2693a4c commit 3ba81c3

File tree

20 files changed

+326
-4
lines changed

20 files changed

+326
-4
lines changed

docs/library/zlib.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
.. module:: zlib
77
:synopsis: zlib decompression
8+
:noindex:
89

910
|see_cpython_module| :mod:`cpython:zlib`.
1011

@@ -26,6 +27,7 @@ Functions
2627
CPython and is ignored.
2728

2829
.. class:: DecompIO(stream, wbits=0, /)
30+
:noindex:
2931

3032
Create a ``stream`` wrapper which allows transparent decompression of
3133
compressed data in another *stream*. This allows to process compressed

lib/uzlib/uzlib.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ typedef struct {
8383
} TINF_TREE;
8484

8585
struct uzlib_uncomp {
86+
/* Point to the CircuitPython object that owns this decompression stream */
87+
void *self;
8688
/* Pointer to the next byte in the input buffer */
8789
const unsigned char *source;
8890
/* Pointer to the next byte past the input buffer (source_limit = source + len) */

locale/circuitpython.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3019,7 +3019,7 @@ msgstr ""
30193019
msgid "complex values not supported"
30203020
msgstr ""
30213021

3022-
#: extmod/moduzlib.c
3022+
#: extmod/moduzlib.c shared-module/zlib/DecompIO.c
30233023
msgid "compression header"
30243024
msgstr ""
30253025

ports/atmel-samd/boards/cp_sapling_m0_spiflash/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ EXTERNAL_FLASH_DEVICES = AT25DF081A
1313

1414
CIRCUITPY_AUDIOIO = 0
1515
CIRCUITPY_AUDIOBUSIO = 0
16+
CIRCUITPY_ZLIB = 0

ports/atmel-samd/boards/matrixportal_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CIRCUITPY_PARALLELDISPLAY = 0
1616
CIRCUITPY_SDCARDIO = 0
1717
CIRCUITPY_SHARPDISPLAY = 0
1818
CIRCUITPY_TRACEBACK = 0
19+
CIRCUITPY_ZLIB=0
1920

2021
# Include these Python libraries in firmware.
2122
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests

ports/atmel-samd/mpconfigport.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ CIRCUITPY_SYNTHIO ?= 0
4646
CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
4747
CIRCUITPY_ULAB = 0
4848
CIRCUITPY_VECTORIO = 0
49+
CIRCUITPY_ZLIB = 0
4950

5051
# TODO: In CircuitPython 8.0, turn this back on, after `busio.OneWire` is removed.
5152
# We'd like a smoother transition, but we can't afford the space to have both

ports/nrf/boards/bluemicro833/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ CIRCUITPY_TRACEBACK = 0
4242
CIRCUITPY_ULAB = 0
4343
CIRCUITPY_USB_MIDI = 0
4444
CIRCUITPY_VECTORIO = 0
45+
CIRCUITPY_ZLIB = 0
4546

4647
MICROPY_PY_ASYNC_AWAIT = 0
4748

ports/nrf/boards/pca10100/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ CIRCUITPY_SYNTHIO = 0
3232
CIRCUITPY_ULAB = 0
3333
CIRCUITPY_USB_MIDI = 0
3434
CIRCUITPY_VECTORIO = 0
35+
CIRCUITPY_ZLIB = 0
3536

3637
MICROPY_PY_ASYNC_AWAIT = 0
3738

ports/nrf/boards/simmel/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ CIRCUITPY_ULAB = 0
4242
CIRCUITPY_USB_CDC = 0
4343
CIRCUITPY_USB_MIDI = 0
4444
CIRCUITPY_WATCHDOG = 1
45+
CIRCUITPY_ZLIB = 0
4546

4647
# Enable micropython.native
4748
#CIRCUITPY_ENABLE_MPY_NATIVE = 1

ports/stm/boards/meowbit_v121/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ CIRCUITPY_BLEIO_HCI = 0
2626
CIRCUITPY_GIFIO = 0
2727
CIRCUITPY_ULAB = 0
2828
CIRCUITPY_STAGE = 1
29+
CIRCUITPY_ZLIB = 0
2930

3031
FROZEN_MPY_DIRS += $(TOP)/frozen/circuitpython-stage/meowbit

0 commit comments

Comments
 (0)