From: Thomas Heller Date: Thu, 26 Sep 2002 13:19:48 +0000 (+0000) Subject: Again, I did check in too many changes. Sorry. X-Git-Tag: v2.3c1~3977 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d817ad43d9e7ef4acc51abfd8700309644ebb96;p=python Again, I did check in too many changes. Sorry. --- 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: