summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2002-09-26 13:19:48 (GMT)
committerThomas Heller <theller@ctypes.org>2002-09-26 13:19:48 (GMT)
commit6d817ad43d9e7ef4acc51abfd8700309644ebb96 (patch)
tree66fad53a8b33c973df6a31d3c847a60a319ec529 /Lib/asyncore.py
parent4613876ee3136d07fc9c5a94acae2266468a4d2a (diff)
downloadcpython-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.py2
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: