diff options
author | Thomas Heller <theller@ctypes.org> | 2002-09-26 13:19:48 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2002-09-26 13:19:48 (GMT) |
commit | 6d817ad43d9e7ef4acc51abfd8700309644ebb96 (patch) | |
tree | 66fad53a8b33c973df6a31d3c847a60a319ec529 /Lib/asyncore.py | |
parent | 4613876ee3136d07fc9c5a94acae2266468a4d2a (diff) | |
download | cpython-6d817ad43d9e7ef4acc51abfd8700309644ebb96.zip cpython-6d817ad43d9e7ef4acc51abfd8700309644ebb96.tar.gz cpython-6d817ad43d9e7ef4acc51abfd8700309644ebb96.tar.bz2 |
Again, I did check in too many changes. Sorry.
Diffstat (limited to 'Lib/asyncore.py')
-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 abbbae6..33d414a 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: |