py3-friendly multi-exception fix for missing fileno under debugger
This commit is contained in:
parent
e396d5d508
commit
a9322e8b8b
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class WorkerProcess(multiprocessing.Process):
|
||||||
# not a valid file descriptor, so we just rely on
|
# not a valid file descriptor, so we just rely on
|
||||||
# using the one that was passed in
|
# using the one that was passed in
|
||||||
pass
|
pass
|
||||||
except AttributeError, ValueError:
|
except (AttributeError, ValueError):
|
||||||
# couldn't get stdin's fileno, so we just carry on
|
# couldn't get stdin's fileno, so we just carry on
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue