]> granicus.if.org Git - python/commit
Issue #23618: socket.socket.connect() now waits until the connection completes
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 2 Apr 2015 09:50:57 +0000 (11:50 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 2 Apr 2015 09:50:57 +0000 (11:50 +0200)
commit81c41dbfccf7b2a6bcab2570c102bb591674c567
tree2ffe8cb15d69f72ca58115f717547708d556e296
parent708d9ba5a228de83267e9ecc57f4fde90c326b84
Issue #23618: socket.socket.connect() now waits until the connection completes
instead of raising InterruptedError if the connection is interrupted by
signals, signal handlers don't raise an exception and the socket is blocking or
has a timeout.

socket.socket.connect() still raise InterruptedError for non-blocking sockets.
Doc/library/socket.rst
Doc/whatsnew/3.5.rst
Misc/NEWS
Modules/socketmodule.c