Lines Matching refs:fileobj
56 gzip.GzipFile(fileobj=fobj, mode="rb") as f:
332 with gzip.GzipFile(fileobj=f, mode="w") as g:
338 with gzip.GzipFile(fileobj=f, mode="w") as g:
344 with gzip.GzipFile(fileobj=f, mode='r') as g:
346 with gzip.GzipFile(fileobj=f, mode='w') as g:
348 with gzip.GzipFile(fileobj=f, mode='a') as g:
351 gzip.GzipFile(fileobj=f, mode='z')
354 with gzip.GzipFile(fileobj=f) as g:
358 with gzip.GzipFile(fileobj=f) as g:
366 with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f:
373 with gzip.GzipFile(fileobj=f, mode='wb') as archive: