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 steve.dower
Recipients paul.moore, stcanny, steve.dower, tim.golden, zach.ware
Date 2021-11-10.13:34:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636551290.51.0.477281838281.issue45776@roundup.psfhosted.org>
In-reply-to
Content
Since collections.abc is a module, it should work if you import it:

>>> import collections.abc
>>> collections.abc.Container
<class 'collections.abc.Container'>

Submodules being implicitly imported is not part of any API guarantee, which will be why somebody changed it without considering this impact.
History
Date User Action Args
2021-11-10 13:34:50steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, stcanny
2021-11-10 13:34:50steve.dowersetmessageid: <1636551290.51.0.477281838281.issue45776@roundup.psfhosted.org>
2021-11-10 13:34:50steve.dowerlinkissue45776 messages
2021-11-10 13:34:50steve.dowercreate