Home | Trees | Index | Help |
---|
Module codecs :: Class StreamReader |
|
Codec
--+
|
StreamReader
StreamReader
Method Summary | |
---|---|
Creates a StreamReader instance. | |
Inherit all other methods from the underlying stream. | |
Decodes the object input and returns a tuple (output object, length consumed). (inherited from Codec )
| |
Encodes the object input and returns a tuple (output object, length consumed). (inherited from Codec )
| |
Decodes data from the stream self.stream and returns the resulting object. | |
Read one line from the input stream and return the decoded data. | |
Read all lines available on the input stream and return them as list of lines. | |
Resets the codec buffers used for keeping state. |
Method Details |
---|
__init__(self,
stream,
errors='strict')
|
__getattr__(self,
name,
getattr=<built-in function getattr>)
Inherit all other methods from the underlying stream.
|
read(self, size=-1)Decodes data from the stream self.stream and returns the resulting object. size indicates the approximate maximum number of bytes to read from the stream for decoding purposes. The decoder can modify this setting as appropriate. The default value -1 indicates to read and decode as much as possible. size is intended to prevent having to decode huge files in one step. The method should use a greedy read strategy meaning that it should read as much data as is allowed within the definition of the encoding and the given size, e.g. if optional encoding endings or state markers are available on the stream, these should be read too. |
readline(self, size=None)Read one line from the input stream and return the decoded data. Note: Unlike the .readlines() method, this method inherits the line breaking knowledge from the underlying stream's .readline() method -- there is currently no support for line breaking using the codec decoder due to lack of line buffering. Sublcasses should however, if possible, try to implement this method using their own knowledge of line breaking. size, if given, is passed as size argument to the stream's .readline() method. |
readlines(self, sizehint=None)Read all lines available on the input stream and return them as list of lines. Line breaks are implemented using the codec's decoder method and are included in the list entries. sizehint, if given, is passed as size argument to the stream's .read() method. |
reset(self)Resets the codec buffers used for keeping state. Note that no stream repositioning should take place. This method is primarily intended to be able to recover from decoding errors. |
Home | Trees | Index | Help |
---|
Generated by Epydoc 1.1 on Fri Jun 27 03:47:42 2003 | http://epydoc.sf.net |