如果没有抛出异常则执行
如果未抛出异常,我想执行一些代码。
目前我正在这样做:
try:
return type, self.message_handlers[type](self, length - 1)
finally:
if not any(self.exc_info()):
self.last_recv_time = time.time()
这可以改进吗?这是最好的方法吗?
更新0
如果控制流离开,则执行可选的 else 子句 try 子句结束。
目前,控制“从末端流出”,除了以下情况: 异常或执行 return、Continue 或 Break 语句。
I have some code I want to execute if an exception is not thrown.
Currently I'm doing this:
try:
return type, self.message_handlers[type](self, length - 1)
finally:
if not any(self.exc_info()):
self.last_recv_time = time.time()
Can this be improved on? Is this the best way to do it?
Update0
The optional else clause is executed if and when control flows off the
end of the try clause.Currently, control “flows off the end” except in the case of an
exception or the execution of a return, continue, or break statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的代码表明您不想捕获发生的异常,那么为什么不简单地
(我错过了什么吗?)
Your code suggests that you don't want to catch the exception if it occurs, so why not simply
(Am I missing anything?)