关于python:collections-has-no-attribute-MutableMapping

AttributeError: module ‘collections’ has no attribute ‘MutableMapping’

那起因是什么呢?

DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working

也就是说,from collections import Mapping, MutableMapping 这种用法在 python3.10 上曾经被移除了

从 python3.3 开始,就应该应用 from collections.abc import MutableMapping 代替 from collections import Mapping, MutableMapping

在 python3.10 上,彻底移除了 from collections import Mapping, MutableMapping 这种用法

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理