Searched refs:needs_input (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Modules/ |
H A D | _bz2module.c | 109 char needs_input; member 551 d->needs_input = 0; in decompress() 561 d->needs_input = 1; in decompress() 564 d->needs_input = 0; in decompress() 612 produced, *self.needs_input* will be set to ``False``. In this case, the next 617 *self.needs_input* will be set to True. 657 self->needs_input = 1; in _bz2_BZ2Decompressor___init___impl() 746 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
|
H A D | _lzmamodule.c | 121 char needs_input; member 1046 d->needs_input = 0; in decompress() 1062 d->needs_input = 0; in decompress() 1068 d->needs_input = 1; in decompress() 1072 d->needs_input = 0; in decompress() 1120 produced, *self.needs_input* will be set to ``False``. In this case, the next 1125 *self.needs_input* will be set to True. 1242 self->needs_input = 1; in _lzma_LZMADecompressor___init___impl() 1338 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONL [all...] |
/third_party/python/Lib/ |
H A D | _compression.py | 96 if self._decompressor.needs_input:
|
/third_party/python/Lib/test/ |
H A D | test_lzma.py | 169 self.assertFalse(lzd.needs_input) 174 self.assertFalse(lzd.needs_input) 1223 self.assertFalse(d2.needs_input) # ensure needs_input mechanism works 1226 # simulate needs_input mechanism
|
H A D | test_bz2.py | 751 self.assertFalse(bzd.needs_input) 756 self.assertFalse(bzd.needs_input)
|
Completed in 9 milliseconds