Home | Trees | Index | Help |
---|
Package paramiko :: Module channel :: Class ChannelStderrFile |
|
object
--+ |BufferedFile
--+ |ChannelFile
--+ | ChannelStderrFile
Method Summary | |
---|---|
__init__(self,
channel,
mode,
bufsize)
| |
(subclass override) Read data from the stream. | |
(subclass override) Write data into the stream. | |
Inherited from ChannelFile | |
str |
Returns a string representation of this object, for debugging. |
Set the file's current position, like stdio's fseek . | |
Inherited from BufferedFile | |
| |
iterator |
Returns an iterator that can be used to iterate over the lines in this file. |
Close the file. | |
Write out any data in the write buffer. | |
str |
Returns the next line from the input, or raises StopIteration when EOF is hit. |
str |
Read at most size bytes from the file (less if we hit the
end of the file first). |
str |
Read one entire line from the file. |
list |
Read all remaining lines using readline and return them as a list. |
int |
Return the file's current position. |
Write data to the file. | |
Write a sequence of strings to the file. | |
iterator |
Identical to iter(f) . |
(subclass override) Return the size of the file. | |
| |
Subclasses call this method to initialize the BufferedFile. | |
| |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Class Variable Summary | |
---|---|
Inherited from BufferedFile | |
int |
SEEK_CUR = 1 |
int |
SEEK_END = 2 |
int |
SEEK_SET = 0 |
int |
_DEFAULT_BUFSIZE = 8192 |
Method Details |
---|
_read(self, size)(subclass override) Read data from the stream. ReturnNone or raise EOFError to indicate EOF.
|
_write(self, data)(subclass override) Write data into the stream.
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sun Dec 4 11:16:46 2005 | http://epydoc.sf.net |