在 Python 3.3 中collections(如MutableMapping或MutableSequence)中的“抽象基类”被移至二级模块collections.abc。所以在 Python 3.3+ 中,真正的类型是collections.abc.MutableMapping等等。文档指出旧的别名(例如collections.MutableMapping)将在 Python 3.7(当前最新版本)之前可用,但是在 3.8 中这些别名将被删除。
当您使用别名时,当前版本的 Python 3.7 甚至会产生警告:
./scripts/generateBoard.py:145: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
elif isinstance(value, (collections.MutableMapping, collections.MutableSequence)) == True:
在 python 2.7 中没有collections.abc.
当 Python 脚本打算与(几乎)任何 Python 版本一起使用时,它如何以最方便的方式处理这种差异?我正在寻找一种解决方案,它可以理想地在一个中心位置解决这个烂摊子,而不必try: ... except: ...在我需要这种类型的任何地方使用整个脚本?
收到一只叮咚
至尊宝的传说
相关分类