From f556c8f0ae11bdfb7277421114cb24228619a01a Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 26 Feb 2014 11:35:06 -0800 Subject: [PATCH] Channel info fields --- paramiko/channel.py | 242 ++++++++++++++++++-------------------------- 1 file changed, 98 insertions(+), 144 deletions(-) diff --git a/paramiko/channel.py b/paramiko/channel.py index 3d48e2a..b04c4d9 100644 --- a/paramiko/channel.py +++ b/paramiko/channel.py @@ -62,9 +62,8 @@ class Channel (object): Normally you would only call this method from the constructor of a subclass of `.Channel`. - :param chanid: the ID of this channel, as passed by an existing - `.Transport`. - :type chanid: int + :param int chanid: + the ID of this channel, as passed by an existing `.Transport`. """ self.chanid = chanid self.remote_chanid = 0 @@ -104,8 +103,6 @@ class Channel (object): def __repr__(self): """ Return a string representation of this object, for debugging. - - :rtype: str """ out = ''