bz2.BZ2Decompressor.eof

eof True if the end-of-stream marker has been reached.

2016-10-07 17:28:13
tarfile.TarInfo.linkname

TarInfo.linkname Name of the target file name, which is only present in TarInfo objects of type LNKTYPE

2016-10-07 17:44:13
zlib.crc32()

zlib.crc32(data[, value]) Computes a CRC (Cyclic Redundancy Check) checksum of data. The result is an unsigned 32-bit

2016-10-07 17:48:48
zlib.compressobj()

zlib.compressobj(level=-1, method=DEFLATED, wbits=15, memLevel=8, strategy=Z_DEFAULT_STRATEGY[, zdict]) Returns a compression

2016-10-07 17:48:48
zipfile.LargeZipFile

exception zipfile.LargeZipFile The error raised when a ZIP file would require ZIP64 functionality but that has not been enabled

2016-10-07 17:48:39
bz2.BZ2File

class bz2.BZ2File(filename, mode='r', buffering=None, compresslevel=9) Open a bzip2-compressed file in binary mode.

2016-10-07 17:28:14
bz2.BZ2File.peek()

peek([n]) Return buffered data without advancing the file position. At least one byte of data will be returned (unless at EOF)

2016-10-07 17:28:14
zlib.Compress.copy()

Compress.copy() Returns a copy of the compression object. This can be used to efficiently compress a set of data that share

2016-10-07 17:48:47
zlib.Compress.compress()

Compress.compress(data) Compress data, returning a bytes object containing compressed data for at least part of the

2016-10-07 17:48:47
tarfile.TarInfo.frombuf()

classmethod TarInfo.frombuf(buf, encoding, errors) Create and return a TarInfo object from string buffer buf

2016-10-07 17:44:11