projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9647b52
)
Add XXX about Winsock error values
author
Guido van Rossum
<guido@python.org>
Thu, 26 Dec 2002 18:22:54 +0000
(18:22 +0000)
committer
Guido van Rossum
<guido@python.org>
Thu, 26 Dec 2002 18:22:54 +0000
(18:22 +0000)
Lib/asyncore.py
patch
|
blob
|
history
diff --git
a/Lib/asyncore.py
b/Lib/asyncore.py
index 2c94813f25bae16da74d86339a81adba7475e9a8..90be4d342e5f60b70b0d57faba3ff0f785f883f2 100644
(file)
--- a/
Lib/asyncore.py
+++ b/
Lib/asyncore.py
@@
-302,6
+302,7
@@
class dispatcher:
def connect(self, address):
self.connected = 0
err = self.socket.connect_ex(address)
+ # XXX Should interpret Winsock return values
if err in (EINPROGRESS, EALREADY, EWOULDBLOCK):
return
if err in (0, EISCONN):