summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiampaolo Rodolà <g.rodola@gmail.com>2010-08-04 08:35:25 (GMT)
committerGiampaolo Rodolà <g.rodola@gmail.com>2010-08-04 08:35:25 (GMT)
commit47617ab20d290c99bebbb179db7c0b714b415c8c (patch)
tree2652e1ce8f2b4020c8332990a431a132cb6b831d
parent0b5019fe2376ed6ef2aaf61ff9cbc8e6b090bc56 (diff)
downloadcpython-47617ab20d290c99bebbb179db7c0b714b415c8c.zip
cpython-47617ab20d290c99bebbb179db7c0b714b415c8c.tar.gz
cpython-47617ab20d290c99bebbb179db7c0b714b415c8c.tar.bz2
fix issue #2944: asyncore doesn't handle connection refused correctly (patch by Alexander Shigin)
-rw-r--r--Lib/asyncore.py5
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
3 files changed, 7 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index c23c8aa..c3b9d76 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -435,8 +435,11 @@ class dispatcher:
self.handle_read()
def handle_connect_event(self):
- self.connected = True
+ err = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)
+ if err != 0:
+ raise socket.error(err, _strerror(err))
self.handle_connect()
+ self.connected = True
def handle_write_event(self):
if self.accepting:
diff --git a/Misc/ACKS b/Misc/ACKS
index 089939e..e3aa41c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -871,3 +871,4 @@ Uwe Zessin
Tarek Ziadé
Peter Åstrand
Andrej Krpic
+Alexander Shigin
diff --git a/Misc/NEWS b/Misc/NEWS
index 545ef74..dd5252c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
+- Issue #2944: asyncore doesn't handle connection refused correctly.
+
- Issue #3196: email header decoding is now forgiving if an RFC2047
encoded word encoded in base64 is lacking padding.