Home
last modified time | relevance | path

Searched refs:FORMAT_AUTO (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/
Dlzma.py105 format = FORMAT_AUTO
322 def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None):
/external/python/cpython3/Modules/clinic/
D_lzmamodule.c.h147 int format = FORMAT_AUTO; in _lzma_LZMADecompressor___init__()
/external/python/cpython3/Doc/library/
Dlzma.rst154 decompressed using :const:`FORMAT_AUTO` (see :class:`LZMADecompressor`).
211 .. class:: LZMADecompressor(format=FORMAT_AUTO, memlimit=None, filters=None)
220 default is :const:`FORMAT_AUTO`, which can decompress both ``.xz`` and
299 .. function:: decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None)
/external/python/cpython3/Modules/
D_lzmamodule.c30 FORMAT_AUTO, enumerator
1185 case FORMAT_AUTO: in _lzma_LZMADecompressor___init___impl()
1453 if (PyModule_AddIntMacro(m, FORMAT_AUTO) == -1 || in PyInit__lzma()
/external/python/cpython3/Lib/test/
Dtest_lzma.py30 self.assertRaises(ValueError, LZMACompressor, format=lzma.FORMAT_AUTO)