diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/asyncore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index abbbae69ad..33d414a9f3 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -107,7 +107,7 @@ def poll(timeout=0.0, map=None): try: r, w, e = select.select(r, w, e, timeout) except select.error, err: - if err[0] not in (EINTR, ENOENT): + if err[0] != EINTR: raise for fd in r: |