[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-152]
little doc fixes stupid little doc fixups that didn't fit with the other patches.
This commit is contained in:
parent
246f3d46a2
commit
2746d44906
|
@ -53,7 +53,7 @@ class Transport (BaseTransport):
|
||||||
self.auth_fail_count = 0
|
self.auth_fail_count = 0
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
out = '<paramiko.Transport at %s' % hex(id(self))
|
out = '<paramiko.Transport at %s' % hex(long(id(self)) & 0xffffffffL)
|
||||||
if not self.active:
|
if not self.active:
|
||||||
out += ' (unconnected)'
|
out += ' (unconnected)'
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -28,7 +28,7 @@ import threading, socket
|
||||||
class LoopSocket (object):
|
class LoopSocket (object):
|
||||||
"""
|
"""
|
||||||
A LoopSocket looks like a normal socket, but all data written to it is
|
A LoopSocket looks like a normal socket, but all data written to it is
|
||||||
delivered on the read-end of another LoopSocket, and vice versa, It's
|
delivered on the read-end of another LoopSocket, and vice versa. It's
|
||||||
like a software "socketpair".
|
like a software "socketpair".
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue