mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Get rig of EnvironmentError (#16705)
This commit is contained in:
parent
6eda46de99
commit
3438fa496d
16 changed files with 34 additions and 35 deletions
|
@ -33,7 +33,7 @@ def exit_subprocess():
|
|||
def ignoring_eintr(__func, *args, **kwargs):
|
||||
try:
|
||||
return __func(*args, **kwargs)
|
||||
except EnvironmentError as e:
|
||||
except OSError as e:
|
||||
if e.errno != errno.EINTR:
|
||||
raise
|
||||
return None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue