Package gozerbot :: Module generic :: Class GozerStringIO
[hide private]
[frames] | no frames]

Class GozerStringIO

source code

StringIO.StringIO --+
                    |
                   GozerStringIO

Instance Methods [hide private]
 
readlines(self)
Read until EOF using readline() and return a list containing the lines thus read.
source code

Inherited from StringIO.StringIO: __init__, __iter__, close, flush, getvalue, isatty, next, read, readline, seek, tell, truncate, write, writelines

Method Details [hide private]

readlines(self)

source code 

Read until EOF using readline() and return a list containing the lines thus read.

If the optional sizehint argument is present, instead of reading up to EOF, whole lines totalling approximately sizehint bytes (or more to accommodate a final whole line).

Overrides: StringIO.StringIO.readlines
(inherited documentation)