issues
search
effigies
/
BitTornado
UNMAINTAINED - John Hoffman's fork of the original bittorrent
Other
150
stars
44
forks
source link
BF/PY3: Error handling
#31
Closed
effigies
closed
8 years ago
effigies
commented
8 years ago
Check that a peerid appears in the cache before deleting.
Permit socket.shutdown to fail silently, as failure to close a stream means it's not connected.
socket.error
is
OSError
in Python 3, so remove
socket.error
and check
errno
.
Closes #30.
socket.error
isOSError
in Python 3, so removesocket.error
and checkerrno
.Closes #30.