Lines Matching refs:wbits
64 .. function:: compressobj(level=-1, method=DEFLATED, wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strat…
79 The *wbits* argument controls the size of the history buffer (or the
89 * −9 to −15: Uses the absolute value of *wbits* as the
135 .. function:: decompress(data, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)
138 uncompressed data. The *wbits* parameter depends on
143 .. _decompress-wbits:
145 The *wbits* parameter controls the size of the history buffer
156 * −8 to −15: Uses the absolute value of *wbits* as the window size
169 value may result in an :exc:`error` exception. The default *wbits* value
179 *wbits* and *bufsize* can be used as keyword arguments.
181 .. function:: decompressobj(wbits=MAX_WBITS[, zdict])
186 The *wbits* parameter controls the size of the history buffer (or the
188 the same meaning as `described for decompress() <#decompress-wbits>`__.