Home
last modified time | relevance | path

Searched refs:needs_input (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Modules/
D_bz2module.c45 char needs_input; member
526 d->needs_input = 0; in decompress()
536 d->needs_input = 1; in decompress()
539 d->needs_input = 0; in decompress()
647 self->needs_input = 1; in _bz2_BZ2Decompressor___init___impl()
700 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
D_lzmamodule.c54 char needs_input; member
992 d->needs_input = 0; in decompress()
1002 d->needs_input = 1; in decompress()
1005 d->needs_input = 0; in decompress()
1177 self->needs_input = 1; in _lzma_LZMADecompressor___init___impl()
1259 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
/external/python/cpython3/Doc/library/
Dbz2.rst189 output can be produced, the :attr:`~.needs_input` attribute will
196 *max_length* was negative), the :attr:`~.needs_input` attribute
220 .. attribute:: needs_input
Dlzma.rst250 output can be produced, the :attr:`~.needs_input` attribute will
257 *max_length* was negative), the :attr:`~.needs_input` attribute
283 .. attribute:: needs_input
/external/python/cpython3/Lib/
D_compression.py96 if self._decompressor.needs_input:
/external/python/cpython3/Lib/test/
Dtest_bz2.py733 self.assertFalse(bzd.needs_input)
738 self.assertFalse(bzd.needs_input)
Dtest_lzma.py166 self.assertFalse(lzd.needs_input)
171 self.assertFalse(lzd.needs_input)