- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个函数,应该生成所有内置异常的元组(用于 except (Exception1, Exception2, etc...) as error:
形式)和当我正常运行它时,它工作得很好。
def get_exceptions():
exceptionList = []
for item in dir(__builtins__):
if item.find('Error') != -1:
exec('exceptionList.append({})'.format(item))
return tuple(exceptionList)
if __name__ == '__main__':
print(get_exceptions())
运行时:
(<class 'ArithmeticError'>, <class 'AssertionError'>, <class 'AttributeError'>, <class 'BlockingIOError'>, <class 'BrokenPipeError'>, <class 'BufferError'>, <class 'ChildProcessError'>, <class 'ConnectionAbortedError'>, <class 'ConnectionError'>, <class 'ConnectionRefusedError'>, <class 'ConnectionResetError'>, <class 'EOFError'>, <class 'OSError'>, <class 'FileExistsError'>, <class 'FileNotFoundError'>, <class 'FloatingPointError'>, <class 'OSError'>, <class 'ImportError'>, <class 'IndentationError'>, <class 'IndexError'>, <class 'InterruptedError'>, <class 'IsADirectoryError'>, <class 'KeyError'>, <class 'LookupError'>, <class 'MemoryError'>, <class 'NameError'>, <class 'NotADirectoryError'>, <class 'NotImplementedError'>, <class 'OSError'>, <class 'OverflowError'>, <class 'PermissionError'>, <class 'ProcessLookupError'>, <class 'ReferenceError'>, <class 'RuntimeError'>, <class 'SyntaxError'>, <class 'SystemError'>, <class 'TabError'>, <class 'TimeoutError'>, <class 'TypeError'>, <class 'UnboundLocalError'>, <class 'UnicodeDecodeError'>, <class 'UnicodeEncodeError'>, <class 'UnicodeError'>, <class 'UnicodeTranslateError'>, <class 'ValueError'>, <class 'OSError'>, <class 'ZeroDivisionError'>)
这正是我想要的。但是,在下面,通过 shell,
>>> import list_exceptions
>>> list_exceptions.get_exceptions()
()
什么也没发生。
即使在文件中:
import list_exceptions
print(list_exceptions.get_exceptions())
我得到:
()
这看起来很奇怪。任何帮助都会很棒!顺便说一句,我看了这些,它们与我的想法并没有真正相关。
import fails when running python as script, but not in iPython?
http://python-notes.curiousefficiency.org/en/latest/python_concepts/import_traps.html
如果您有任何疑问,请提出:)
最佳答案
您的方法的根本问题是您依赖于两个不应该依赖的东西。第一个是dir
,不应依赖其行为,因为它的存在主要是为了帮助在交互式 shell 中进行调试。来自 docs :
If the object does not provide
__dir__()
, the function tries its best to gather information from the object’s__dict__
attribute, if defined, and from its type object. The resulting list is not necessarily complete, and may be inaccurate when the object has a custom__getattr__()
....
Note Because
dir()
is supplied primarily as a convenience for use at an interactive prompt, it tries to supply an interesting set of names more than it tries to supply a rigorously or consistently defined set of names, and its detailed behavior may change across releases. For example, metaclass attributes are not in the result list when the argument is a class.
此外,您使用 __builtins__
变量,它是一个实现细节同样来自 docs :
As an implementation detail, most modules have the name
__builtins__
made available as part of their globals. The value of__builtins__
is normally either this module or the value of this module’s__dict__
attribute. Since this is an implementation detail, it may not be used by alternate implementations of Python.
本质上,你依赖的是两个不可靠的东西。请注意,您的情况实际发生是,当您直接运行该模块时,它返回实际的 builtins
模块,但是,当导入模块时,__builtins__
包含“此模块的值__dict__
”。一些调试打印可以说明这一点:
# builtinstest.py
def get_exceptions():
print(type(__builtins__))
print(dir(__builtins__))
从交互式解释器中:
>>> import builtinstest
>>> builtinstest.get_exceptions()
<class 'dict'>
['__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values']
所以当你调用dir
时在dict
上对象,它只是返回可从 dict-object 中自省(introspection)的属性,例如copy
, fromkeys
, get
, items
和所有其他dict
方法。解决方案是使用 builtins
模块并且不要使用 dir
,使用vars
(它只返回 __dict__
属性),因为您需要模块对象的属性。
最后,你的方法 exec
不好。如果你想明智地执行此操作,请检查它是否是 BaseException
的子类。 ,它是所有内置异常的父类,因此来自 the docs :
exception
BaseException
The base class for all built-in exceptions. It is not meant to be directly inherited by user-defined classes (for that, use
Exception
).
所以类似:
import builtins
def get_exceptions_sanely():
exception_list = []
for obj in vars(builtins).values():
if isinstance(obj, type) and issubclass(obj, BaseException):
exception_list.append(obj)
return tuple(exception_list)
做你想要完成的事情。请注意,这会直接迭代值,因此您最终不会使用类似 eval
的内容。或exec
,在本例中这是一种滥用。请注意,这会捕获每个内置异常,例如警告(例如 BytesWarning
)以及更深奥的内容,例如 SystemExit
。
仅仅因为您可以这样做,并不意味着您应该。您声明的目的是:
I have a function that is supposed to generate a tuple of all built-in exceptions, (for use in the
except (Exception1, Exception2, etc...)
form)
as error:
好吧,你可以使用 except BaseException as error
而不是首先通过繁琐的步骤查找这些异常(事实上, except <something>
本质上是检查 <something>
issubclass
是否引发了任何错误。从根本上来说,很少有任何充分的理由拥有如此广泛的 except
子句。您应该始终 try catch 尽可能窄的异常。
关于python - 查找所有内置异常的简单函数在直接运行时有效,但在用作导入模块时失败,不提供回溯,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47897391/
当我这样做时... import numpy as np ...我可以使用它但是... import pprint as pp ...不能,因为我需要这样做... from pprint import
我第一次尝试将 OpenCV 用于 Python 3。要安装,我只需在终端中输入“pip3 install opencv-python”。当我这样做时,我在 Finder(我在 Mac 上)中看到,在
如果有一个库我将使用至少两种方法,那么以下之间在性能或内存使用方面是否有任何差异? from X import method1, method2 和 import X 最佳答案 有区别,因为在 imp
我正在从 lodash 导入一些函数,我的同事告诉我,单独导入每个函数比将它们作为一个组导入更好。 当前方法: import {fn1, fn2, fn3} from 'lodash'; 首选方法:
之间有什么关系: import WSDL 中的元素 -和- import元素和在 XML Schema ...尤其是 location 之间的关系前者和 schemaLocation 的属性后者的属性
我在从 'theano.configdefaults' 导入 'local_bitwidth' 时遇到问题。并显示以下消息: ImportError
我注意到 React 可以这样导入: import * as React from 'react'; ...或者像这样: import React from 'react'; 第一个导入 react
对于当前的项目,我必须使用矩阵中提供的信息并对其进行数学计算,以及使用 ITK/VTK 函数来显示医疗信息/渲染。基本上我必须以(我猜)50/50 的方式同时使用 matlab 例程和 VTK/ITK
当我看到 pysqlite 的示例时,SQLite 库有两个用例。 from sqlite3 import dbapi2 as sqlite3 和 import sqlite3 为什么有两种方式支持s
我使用 Anaconda Python 发行版:Python 2.7 x64 和 Windows 7 SP1 x64 Ultimate。 当我import matplotlib.pyplot时,我得到
目录 【容器】镜像导出/导入 导出 导入 带标签 不带标签,后期修改 【仓库】镜像导出/导入
我正在寻找一种导入模块的方法,以便我可以从子文件夹 project/v0 和根文件夹 project 运行脚本。/p> 我在 python 3.6 中的文件结构(这就是没有初始化文件的原因) proj
我通常被告知以下是不好的做法。 from module import * 主要原因(或者有人告诉我)是,您可能会导入一些您不想要的东西,并且它可能会隐藏另一个模块中具有类似名称的函数或类。 但是,Py
我为 urllib (python3) 编写了一个小包装器。在if中导入模块是否正确且安全? if self.response_encoding == 'gzip': import gzip
我正在 pimcore 中创建一个新站点。有没有办法导出/导入 pimcore 站点的完整数据,以便我可以导出 xml/csv 格式的 pimcore 数据进行必要的更改,然后将其导入回来? 最佳答案
在 Node JS 中测试以下模块布局,看起来本地导出的定义总是在名称冲突的情况下替换外部导出的定义(参见 B.js 中的 f1)。 A.js export const f1 = 'A' B.js e
我在使用 VBA 代码时遇到了一些问题,该代码应该将 excel 数据导入我的 Access 数据库。当我运行代码时,我收到一个运行时错误“运行时错误 438 对象不支持此属性或方法”。来自我在其他论
我有一个名为 elements 的包,其中包含按钮、trifader、海报等内容。在 Button 类中,我正在执行 from elements import * 这执行正常,当我尝试 print(p
在我长期使用 python 的经验中,我遇到了一个非常奇怪的问题。 提前我想说我想知道为什么会发生这种情况 ,而不是如何更改我的代码或如何修复它,因为我也可以做到。 我正在使用 python2.7.3
我正在更新我的包。但是,我正在为依赖项/导入而苦苦挣扎。我使用了两个冲突的包 - ggplot2和 psych及其功能 alpha当然还有 alpha ggplot2 的对象不同于 alpha psy
我是一名优秀的程序员,十分优秀!