Searched refs:FORMAT_ALONE (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_lzma.py | 47 LZMADecompressor(format=lzma.FORMAT_ALONE, filters=FILTERS_RAW_1) 86 lzd = LZMADecompressor(lzma.FORMAT_ALONE, memlimit=1024) 111 lzd = LZMADecompressor(lzma.FORMAT_ALONE) 261 lzd = LZMADecompressor(lzma.FORMAT_ALONE) 283 lzc = LZMACompressor(lzma.FORMAT_ALONE) 412 b"", format=lzma.FORMAT_ALONE, filters=FILTERS_RAW_1) 422 COMPRESSED_ALONE, format=lzma.FORMAT_ALONE, memlimit=1024) 436 ddata = lzma.decompress(COMPRESSED_ALONE, lzma.FORMAT_ALONE) 475 lzma.decompress(COMPRESSED_XZ, format=lzma.FORMAT_ALONE) 491 cdata = lzma.compress(INPUT, lzma.FORMAT_ALONE) [all …]
|
/external/python/cpython3/Modules/ |
D | _lzmamodule.c | 31 FORMAT_ALONE, enumerator 752 case FORMAT_ALONE: in Compressor_init() 1192 case FORMAT_ALONE: in _lzma_LZMADecompressor___init___impl() 1449 PyModule_AddIntMacro(m, FORMAT_ALONE) == -1 || in PyInit__lzma()
|
/external/python/cpython3/Doc/library/ |
D | lzma.rst | 146 * :const:`FORMAT_ALONE`: The legacy ``.lzma`` container format. 162 :const:`FORMAT_ALONE` and :const:`FORMAT_RAW`. 222 :const:`FORMAT_ALONE`, and :const:`FORMAT_RAW`. 335 * :const:`FILTER_LZMA1` (for use with :const:`FORMAT_ALONE`)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 3026 FORMAT_ALONE format file, and it doesn't have the end marker, sometimes the
|