提交 76bbf2a8 authored 作者: Olivier Delalleau's avatar Olivier Delalleau

Replaced "except:" by "except Exception:"

This avoids blocking interrupts.
上级 5f55e31b
......@@ -1808,7 +1808,7 @@ class GCC_compiler(object):
# Python3 compatibility: try to cast Py3 strings as Py2 strings
try:
src_code = b(src_code)
except:
except Exception:
pass
os.write(fd, src_code)
os.close(fd)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论