如何区分“未找到模块”和“未找到模块”?来自“模块抛出异常”关于导入错误?

发布于 2024-08-13 07:21:51 字数 265 浏览 8 评论 0原文

在 Python 中,import does_not_exist 会引发 ImportError,而

import exists

exists.py:

import does_not_exist

也会引发 ImportError

我应该如何区分代码中的差异?

In Python, import does_not_exist raises ImportError, and

import exists

exists.py:

import does_not_exist

will also raise ImportError.

How should I tell the difference in code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

下雨或天晴 2024-08-20 07:21:51

我知道的唯一方法是检查顶级模块名“存在”是否在异常消息中:

try:
  import exists
except ImportError as exc:
  if "exists" in str(exc):
     pass
  else:
     raise

Could this be a feature request for Python's ImportError?为模块名称提供一个变量肯定会很方便。

The only method I know is to check if the toplevel modulename "exists" is in the Exception's message or not:

try:
  import exists
except ImportError as exc:
  if "exists" in str(exc):
     pass
  else:
     raise

Could this be a feature request for Python's ImportError? Having a variable for the module name would certainly be convenient..

靖瑶 2024-08-20 07:21:51

您可以使用回溯的 tb_next。如果异常发生在其他模块上,则与 None 不同

import sys
try:
    import exists
except Exception, e:
    print "None on exists", sys.exc_info()[2].tb_next == None

try:
    import notexists
except Exception, e:
    print "None on notexists", sys.exc_info()[2].tb_next == None

>>> None on exists False
>>> None on notexists True

You can use the tb_next of the traceback. It will be different from None if the exception occured on another module

import sys
try:
    import exists
except Exception, e:
    print "None on exists", sys.exc_info()[2].tb_next == None

try:
    import notexists
except Exception, e:
    print "None on notexists", sys.exc_info()[2].tb_next == None

>>> None on exists False
>>> None on notexists True
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文