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:
parent
4613876ee3
commit
6d817ad43d
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user