t.p.z._FileEntry(object) : class documentation

Part of twisted.python.zipstream View Source View In Hierarchy

Known subclasses: twisted.python.zipstream.DeflatedZipFileEntry, twisted.python.zipstream.ZipFileEntry

Abstract superclass of both compressed and uncompressed variants of file-like objects within a zip archive.
Instance Variable chunkingZipFile a chunking zip file. (type: ChunkingZipFile)
Instance Variable length The number of bytes within the zip file that represent this file. (This is the size on disk, not the number of decompressed bytes which will result from reading it.)
Instance Variable fp the underlying file object (that contains pkzip data). Do not touch this, please. It will quite likely move or go away.
Instance Variable closed File-like 'closed' attribute; True before this file has been closed, False after. (type: bool)
Instance Variable finished An older, broken synonym for 'closed'. Do not touch this, please. (type: int)
Method __init__ Create a _FileEntry from a ChunkingZipFile.
Method isatty Returns false because zip files should not be ttys
Method close Close self (file-like object)
Method readline Read a line.
Method next Implement next as file does (like readline, except raises StopIteration at EOF)
Method readlines Returns a list of all the lines
Method xreadlines Returns an iterator (so self)
Method __iter__ Returns an iterator (so self)
chunkingZipFile =
a chunking zip file. (type: ChunkingZipFile)
length =
The number of bytes within the zip file that represent this file. (This is the size on disk, not the number of decompressed bytes which will result from reading it.)
fp =
the underlying file object (that contains pkzip data). Do not touch this, please. It will quite likely move or go away.
closed =
File-like 'closed' attribute; True before this file has been closed, False after. (type: bool)
finished =
An older, broken synonym for 'closed'. Do not touch this, please. (type: int)
def __init__(self, chunkingZipFile, length): (source)
Create a _FileEntry from a ChunkingZipFile.
def isatty(self): (source)
Returns false because zip files should not be ttys
def close(self): (source)
Close self (file-like object)
def readline(self): (source)
Read a line.
def next(self): (source)
Implement next as file does (like readline, except raises StopIteration at EOF)
def readlines(self): (source)
Returns a list of all the lines
def xreadlines(self): (source)
Returns an iterator (so self)
def __iter__(self): (source)
Returns an iterator (so self)
API Documentation for Twisted, generated by pydoctor at 2013-11-08 22:07:30.