summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/asyncore.py1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 920444d89a..d20609d361 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -337,6 +337,7 @@ class dispatcher:
err = self.socket.connect_ex(address)
if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
or err == EINVAL and os.name in ('nt', 'ce'):
+ self.addr = address
return
if err in (0, EISCONN):
self.addr = address
diff --git a/Misc/NEWS b/Misc/NEWS
index f03aeb5c1a..69388ca314 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #13694: asynchronous connect in asyncore.dispatcher does not set addr
+ attribute.
+
- Issue #14344: fixed the repr of email.policy objects.
- Issue #11686: Added missing entries to email package __all__ lists