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 josiahcarlson
Recipients
Date 2007-01-08.17:02:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
According to my reading, the only change necessary to make the semantics equivalent for a non-blocking socket for which .connect() has been called is to change a portion of the dispatcher's __init__ method to:

    try:
        self.addr = sock.getpeername()
    except socket.error:
        # if we can't get the peer name, we haven't connected yet
        self.connected = False
History
Date User Action Args
2007-08-23 14:19:43adminlinkissue889153 messages
2007-08-23 14:19:43admincreate