We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71faefc commit 7941736Copy full SHA for 7941736
2 files changed
Lib/asyncore.py
@@ -345,6 +345,7 @@ def connect(self, address):
345
err = self.socket.connect_ex(address)
346
if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
347
or err == EINVAL and os.name in ('nt', 'ce'):
348
+ self.addr = address
349
return
350
if err in (0, EISCONN):
351
self.addr = address
Misc/NEWS
@@ -28,6 +28,9 @@ Core and Builtins
28
Library
29
-------
30
31
+- Issue #13694: asynchronous connect in asyncore.dispatcher does not set addr
32
+ attribute.
33
+
34
- Issue #11686: Added missing entries to email package __all__ lists
35
(mostly the new Bytes classes).
36
0 commit comments