Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6d817ad

Browse files
author
Thomas Heller
committed
Again, I did check in too many changes. Sorry.
1 parent 4613876 commit 6d817ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/asyncore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def poll(timeout=0.0, map=None):
107107
try:
108108
r, w, e = select.select(r, w, e, timeout)
109109
except select.error, err:
110-
if err[0] not in (EINTR, ENOENT):
110+
if err[0] != EINTR:
111111
raise
112112

113113
for fd in r:

0 commit comments

Comments
 (0)