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 pitrou
Recipients giampaolo.rodola, janssen, pitrou
Date 2010-04-24.21:20:57
SpamBayes Score 0.008708379
Marked as misclassified No
Message-id <1272144058.98.0.0609352881206.issue8524@psf.upfronthosting.co.za>
In-reply-to
Content
Another consequence is that the following check in __init__:

                    timeout = self.gettimeout()
                    if timeout == 0.0:
                        # non-blocking
                        raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")

could never get triggered since the timeout is reset to None by virtue of creating a new socket object.
History
Date User Action Args
2010-04-24 21:20:59pitrousetrecipients: + pitrou, janssen, giampaolo.rodola
2010-04-24 21:20:58pitrousetmessageid: <1272144058.98.0.0609352881206.issue8524@psf.upfronthosting.co.za>
2010-04-24 21:20:57pitroulinkissue8524 messages
2010-04-24 21:20:57pitroucreate