Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cpython
Commits
3d3cf48e
Commit
3d3cf48e
authored
13 years ago
by
Giampaolo Rodola'
Browse files
Options
Download
Email Patches
Plain Diff
Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr.
parent
0e3c1075
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
Lib/asyncore.py
Lib/asyncore.py
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/asyncore.py
View file @
3d3cf48e
...
...
@@ -345,6 +345,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
...
...
This diff is collapsed.
Click to expand it.
Misc/NEWS
View file @
3d3cf48e
...
...
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
-
Issue
#
13694
:
asynchronous
connect
in
asyncore
.
dispatcher
does
not
set
addr
attribute
.
-
Issue
#
10484
:
Fix
the
CGIHTTPServer
's PATH_INFO handling problem.
- Issue #11199: Fix the with urllib which hangs on particular ftp urls.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment