Module cStringIO :: Class InputType
[hide private]
[frames] | no frames]

type InputType

object --+
         |
        InputType

Simple type for treating strings as input file streams

Instance Methods [hide private]
 
__iter__(x)
iter(x)
 
close(...)
close(): explicitly release resources held.
 
flush(...)
flush(): does nothing.
 
getvalue(use_pos=...)
Get the string value.
 
isatty(...)
isatty(): always returns 0
the next value, or raise StopIteration
next(x)
 
read(s=...)
Read s characters, or the rest of the string
 
readline()
Read one line
 
readlines()
Read all lines
 
reset()
Reset the file position to the beginning
 
seek(position)
set the current position seek(position, mode) -- mode 0: absolute; 1: relative; 2: relative to EOF
 
tell()
get the current position.
 
truncate(...)
truncate(): truncate the file at the current position.
Properties [hide private]
  closed
True if the file is closed
Method Details [hide private]

getvalue(use_pos=...)

 

Get the string value. If use_pos is specified and is a true value, then the string returned will include only the text up to the current file position.