mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Merged revisions 83705 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83705 | giampaolo.rodola | 2010-08-04 11:02:27 +0200 (mer, 04 ago 2010) | 1 line fix issue #2944: asyncore doesn't handle connection refused correctly (patch by Alexander Shigin). Merged from 2.7 branch. ........
This commit is contained in:
parent
8801f7add2
commit
8c5ced43a1
3 changed files with 7 additions and 1 deletions
|
@ -426,8 +426,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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue