On 2005.04.18 14:31:09 +0000, Dave Aitel wrote: > Danny Milosavljevic wrote: > >What is module "timeoutsocket" ? > > Timeoutsock is a commonly used Python module that allows TCP sockets to > have a "timeout" on various operations. > > http://www.steffensiebert.de/soft/python/timeoutsocket.py
Note that the version of the socket module included in Python 2.3+ includes the ability to use timeouts on both http (like timeoutsocket) and https (unlike timeoutsocket) connections. So, unless you're stuck on Python 2.2, there's no real need for timeoutsocket anymore. -- David Ripton [EMAIL PROTECTED] _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
