mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +00:00
Fix the patch for issue #7978: select() raises select.error before 3.3, not OSError.
This commit is contained in:
parent
f18d6f3f44
commit
c0aa9eeb90
2 changed files with 3 additions and 3 deletions
|
@ -153,8 +153,8 @@ def _eintr_retry(func, *args):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
return func(*args)
|
return func(*args)
|
||||||
except OSError as e:
|
except (OSError, select.error) as e:
|
||||||
if e.errno != errno.EINTR:
|
if e.args[0] != errno.EINTR:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
class BaseServer:
|
class BaseServer:
|
||||||
|
|
|
@ -244,7 +244,7 @@ class SocketServerTest(unittest.TestCase):
|
||||||
self.called += 1
|
self.called += 1
|
||||||
if self.called == 1:
|
if self.called == 1:
|
||||||
# raise the exception on first call
|
# raise the exception on first call
|
||||||
raise OSError(errno.EINTR, os.strerror(errno.EINTR))
|
raise select.error(errno.EINTR, os.strerror(errno.EINTR))
|
||||||
else:
|
else:
|
||||||
# Return real select value for consecutive calls
|
# Return real select value for consecutive calls
|
||||||
return old_select(*args)
|
return old_select(*args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue