Lines Matching defs:format
144 "LZMADecompressor(format=FORMAT_AUTO, memlimit=None, filters=None)\n"
149 " format\n"
150 " Specifies the container format of the input stream. If this is\n"
160 " not accepted with any other format. When provided, this should be a\n"
167 _lzma_LZMADecompressor___init___impl(Decompressor *self, int format,
174 static const char * const _keywords[] = {"format", "memlimit", "filters", NULL};
180 int format = FORMAT_AUTO;
192 format = _PyLong_AsInt(fastargs[0]);
193 if (format == -1 && PyErr_Occurred()) {
208 return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filters);