Home
last modified time | relevance | path

Searched refs:BadGzipFile (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/
Dgzip.py117 class BadGzipFile(OSError): class
436 raise BadGzipFile('Not a gzipped file (%r)' % magic)
441 raise BadGzipFile('Unknown compression method')
525 raise BadGzipFile("CRC check failed %s != %s" % (hex(crc32),
528 raise BadGzipFile("Incorrect length of data produced")
/third_party/python/Lib/test/
Dtest_gzip.py426 self.assertTrue(issubclass(gzip.BadGzipFile, OSError))
432 self.assertRaises(gzip.BadGzipFile, file.readlines)
/third_party/python/Doc/library/
Dgzip.rst62 .. exception:: BadGzipFile
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1191 Add a :exc:`~gzip.BadGzipFile` exception to the :mod:`gzip` module.
/third_party/python/Doc/whatsnew/
D3.8.rst839 A :exc:`~gzip.BadGzipFile` exception is now raised instead of :exc:`OSError`