• Home
  • Raw
  • Download

Lines Matching refs:GzipFile

35         with gzip.GzipFile(self.filename, 'w'+mode) as f:
38 with gzip.GzipFile(self.filename, 'r'+mode) as f:
49 with gzip.GzipFile(unicode_filename, "wb") as f:
51 with gzip.GzipFile(unicode_filename, "rb") as f:
55 gzip.GzipFile(fileobj=fobj, mode="rb") as f:
59 with gzip.GzipFile(self.filename, 'wb') as f:
82 with gzip.GzipFile(self.filename, 'wb') as f:
88 with gzip.GzipFile(self.filename, 'rb') as f:
94 with gzip.GzipFile(self.filename, 'r') as f:
101 with gzip.GzipFile(self.filename, 'rU') as f:
111 f = gzip.GzipFile(self.filename, 'r')
120 f = gzip.GzipFile(self.filename, 'w')
130 with gzip.GzipFile(self.filename, 'ab') as f:
133 with gzip.GzipFile(self.filename, 'rb') as f:
161 with gzip.GzipFile(self.filename, 'rb') as f:
171 with gzip.GzipFile(self.filename, 'rb') as f:
183 with gzip.GzipFile(self.filename, 'rb') as f:
186 with gzip.GzipFile(self.filename, 'rb') as f:
195 with gzip.GzipFile(self.filename) as f:
214 with gzip.GzipFile(self.filename) as f:
222 with gzip.GzipFile(self.filename, 'w') as f:
229 with gzip.GzipFile(self.filename, 'r') as f:
234 with gzip.GzipFile(self.filename, mode) as f:
240 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
242 with gzip.GzipFile(self.filename) as fRead:
251 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
295 with gzip.GzipFile(self.filename, "wb") as f:
297 f = gzip.GzipFile(self.filename, "rb")
307 with gzip.GzipFile(self.filename, "wb") as f:
315 with gzip.GzipFile(self.filename, "wb") as f:
322 with gzip.GzipFile(self.filename, "rb") as f:
331 with gzip.GzipFile(fileobj=f, mode="w") as g:
339 with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f: