0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Again, I did check in too many changes. Sorry.

This commit is contained in:
Thomas Heller 2002-09-26 13:19:48 +00:00
parent 4613876ee3
commit 6d817ad43d

View File

@ -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: