繁体   English   中英

忽略在 python 3 中向调用者引发异常

[英]Ignore raising exception to the caller in python 3

如何忽略 python 3 中向调用方引发的某个异常?

例子:

def do_something():
    try:
        statement1
        statement2
    except Exception as e:
        # ignore the exception
        logging.warning("this is normal, exception is ignored")


try:
    do_something()
except Exception as e:
    # this is unexpected control flow, the first exception is already ignored !! 
    logging.error("unexpected error")
    logging.error(e)  # prints None

我发现有人提到“由于在 Python 中记住了最后抛出的异常,异常抛出语句中涉及的一些对象将无限期地保持存在”,然后提到在这种情况下使用“sys.exc_clear()”在 python 中不再可用 3. 任何线索我怎样才能完全忽略 python3 中的异常?

在 Python 3中不需要执行此操作, sys.exc_clear()已被删除,因为 Python 不像在 Python 2 中那样在内部存储最后引发的异常:

例如,在 Python 2 中,异常在 function 内部仍然保持活动状态:

def foo():
    try:
        raise ValueError()
    except ValueError as e:
        print(e)

    import sys; print(sys.exc_info())

现在调用foo显示异常被保留:

foo()
(<type 'exceptions.ValueError'>, ValueError(), <traceback object at 0x7f45c57fc560>)

您需要调用sys.exc_clear()才能清除引发的Exception

Python 3、反之:

def foo():
    try:
        raise ValueError()
    except ValueError as e:
        print(e)
    import sys; print(sys.exc_info())

调用相同的 function:

foo()    
(None, None, None)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM