This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author AlexWaygood
Recipients AlexWaygood, mareklachbc
Date 2022-01-12.13:38:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641994687.84.0.265401111941.issue46354@roundup.psfhosted.org>
In-reply-to
Content
Hi -- thanks for the report! You haven't given us many details here, but I think this is intentional behaviour, not a bug -- this was changed in Issue37324. Importing `Mapping` (along with many other names) directly from `collections`, instead of from `collections.abc`, has been deprecated since Python 3.3, and was removed in Python 3.10. So instead of writing `from collections import Mapping`, simply write `from collections.abc import Mapping`, and you should find that no error is raised.
History
Date User Action Args
2022-01-12 13:38:07AlexWaygoodsetrecipients: + AlexWaygood, mareklachbc
2022-01-12 13:38:07AlexWaygoodsetmessageid: <1641994687.84.0.265401111941.issue46354@roundup.psfhosted.org>
2022-01-12 13:38:07AlexWaygoodlinkissue46354 messages
2022-01-12 13:38:07AlexWaygoodcreate