Catch some exceptions.

This commit is contained in:
grossmj
2018-09-28 15:04:38 +02:00
parent 4efdefaf5a
commit 4d95e0b51f
3 changed files with 9 additions and 5 deletions

View File

@ -315,7 +315,7 @@ class VPCSVM(BaseNode):
if sys.platform.startswith("win32"):
try:
self._process.send_signal(signal.CTRL_BREAK_EVENT)
except OSError:
except (SystemError, OSError):
pass
else:
try: