|
|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
a new object with type S, a subtype of T
|
|
|
None
|
close(...)
Close the stream. |
|
|
|
None
|
flush(...)
Flush the internal buffer. |
|
|
|
the next value, or raise StopIteration
|
|
|
string
|
read(...)
Read at most size bytes from the file (less if the read hits EOF before obtaining size bytes). |
|
|
|
string
|
readline(...)
Read one entire line from the file. |
|
|
|
None
|
write(...)
Write data to the stream. |
|
|
|
None
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|