[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:
Robey Pointer 2005-02-28 07:17:21 +00:00
parent 246f3d46a2
commit 2746d44906
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ class Transport (BaseTransport):
self.auth_fail_count = 0
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:
out += ' (unconnected)'
else:

View File

@ -28,7 +28,7 @@ import threading, socket
class LoopSocket (object):
"""
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".
"""