Home | Trees | Index | Help |
---|
Package paramiko :: Module channel :: Class ChannelFile |
|
object
--+ |BufferedFile
--+ | ChannelFile
Channel
. A ChannelFile is created by
calling Channel.makefile
and doesn't have the
non-portable side effect of Channel.fileno
.
Bug: To correctly emulate the file object created from a socket's
makefile
method, a Channel
and its ChannelFile
should be able to be closed or garbage-collected independently.
Currently, closing the ChannelFile
does nothing but flush
the buffer.
Method Summary | |
---|---|
__init__(self,
channel,
mode,
bufsize)
| |
string |
Returns a string representation of this object, for debugging. |
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) |
Method Details |
---|
__repr__(self)
Returns a string representation of this object, for debugging.
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Fri Apr 23 15:55:49 2004 | http://epydoc.sf.net |