Check that /proc/self/fd exists before listing it
This commit is contained in:
parent
9e4dacd5e7
commit
709ba99afd
|
@ -130,6 +130,10 @@ def _process_fds():
|
|||
counts = {(k,): 0 for k in TYPES.values()}
|
||||
counts[("other",)] = 0
|
||||
|
||||
# Not every OS will have a /proc/self/fd directory
|
||||
if not os.path.exists("/proc/self/fd"):
|
||||
return counts
|
||||
|
||||
for fd in os.listdir("/proc/self/fd"):
|
||||
try:
|
||||
s = os.stat("/proc/self/fd/%s" % (fd))
|
||||
|
|
Loading…
Reference in New Issue