blob: ae3d8cb8f1dcc1b9f028f6964d189b70bcc44e5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
timeoutsocket enables a timeout mechanism on all TCP connections. It
does this by inserting a shim into the socket module. After this module
has been imported, all socket creation goes through this shim. As a
result, every TCP connection will support a timeout.
The beauty of this method is that it immediately and transparently
enables the entire python library to support timeouts on TCP sockets.
WWW: http://www.timo-tasi.org/python/timeoutsocket.py
|