mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-118201: Accomodate flaky behavior of os.sysconf
on iOS (GH-118453)
This commit is contained in:
parent
7d83f7bcc4
commit
21336aa127
2 changed files with 3 additions and 1 deletions
|
@ -632,7 +632,8 @@ def fd_count():
|
|||
if hasattr(os, 'sysconf'):
|
||||
try:
|
||||
MAXFD = os.sysconf("SC_OPEN_MAX")
|
||||
except OSError:
|
||||
except (OSError, ValueError):
|
||||
# gh-118201: ValueError is raised intermittently on iOS
|
||||
pass
|
||||
|
||||
old_modes = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue