summaryrefslogtreecommitdiffstats
path: root/Lib/ssl.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-18 16:51:06 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-18 16:51:06 (GMT)
commitb4410dbea699eb59358d3d61f45749173167d69a (patch)
tree8cb1989e16c2045303068fe3489e47bdb2e35ece /Lib/ssl.py
parent3349bca46d66f993e97407ba756e3f515a863fad (diff)
downloadcpython-b4410dbea699eb59358d3d61f45749173167d69a.zip
cpython-b4410dbea699eb59358d3d61f45749173167d69a.tar.gz
cpython-b4410dbea699eb59358d3d61f45749173167d69a.tar.bz2
Issue #12065: connect_ex() on an SSL socket now returns the original errno
when the socket's timeout expires (it used to return None).
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r--Lib/ssl.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/Lib/ssl.py b/Lib/ssl.py
index b12b9fd..e9e9aa8 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -442,7 +442,7 @@ class SSLSocket(socket):
finally:
self.settimeout(timeout)
- def _real_connect(self, addr, return_errno):
+ def _real_connect(self, addr, connect_ex):
if self.server_side:
raise ValueError("can't connect in server-side mode")
# Here we assume that the socket is client-side, and not
@@ -451,17 +451,19 @@ class SSLSocket(socket):
raise ValueError("attempt to connect already-connected SSLSocket!")
self._sslobj = self.context._wrap_socket(self, False, self.server_hostname)
try:
- socket.connect(self, addr)
- if self.do_handshake_on_connect:
- self.do_handshake()
- except socket_error as e:
- if return_errno:
- return e.errno
+ if connect_ex:
+ rc = socket.connect_ex(self, addr)
else:
- self._sslobj = None
- raise e
- self._connected = True
- return 0
+ rc = None
+ socket.connect(self, addr)
+ if not rc:
+ if self.do_handshake_on_connect:
+ self.do_handshake()
+ self._connected = True
+ return rc
+ except socket_error:
+ self._sslobj = None
+ raise
def connect(self, addr):
"""Connects to remote ADDR, and then wraps the connection in