This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author oddthinking
Recipients docs@python, oddthinking, orsenthil
Date 2010-05-02.03:45:06
SpamBayes Score 0.0003484866
Marked as misclassified No
Message-id <1272771908.38.0.531194630524.issue8595@psf.upfronthosting.co.za>
In-reply-to
Content
@orsenthil:

Consider the definition of httplib.HTTPConnection.__init__(), in Python 2.6.

   def __init__(self, host, port=None, strict=None,
                timeout=socket._GLOBAL_DEFAULT_TIMEOUT):


This could be replaced with:

   def __init__(self, host, port=None, strict=None,
                timeout=10):

or, perhaps better, 

   def __init__(self, host, port=None, strict=None,
                timeout=httplib._HTTP_DEFAULT_TIMEOUT):

This timeout value is passed to the call in socket.create_connection, so I believe if it is overriden, it only applies to the relevant sockets and not to all sockets globally.

Note: I am not arguing here that this SHOULD be done - it would break existing applications, especially those that were written before Python 2.6 - merely that it COULD be done.
History
Date User Action Args
2010-05-02 03:45:08oddthinkingsetrecipients: + oddthinking, orsenthil, docs@python
2010-05-02 03:45:08oddthinkingsetmessageid: <1272771908.38.0.531194630524.issue8595@psf.upfronthosting.co.za>
2010-05-02 03:45:06oddthinkinglinkissue8595 messages
2010-05-02 03:45:06oddthinkingcreate