Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At some point, apparently Python 3.3, collections.Mapping moved to collections.abc.Mapping [0]. Update the import accordingly. [0] https://docs.python.org/3/library/collections.abc.html
- Loading branch information
a1d4fca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This breaks rendering docs for me entirely, because
collections.abc
doesn't containdefaultdict
.The docs for
collections.abc
mention:I think this should import both
collections.abc
andcollections
, and get the different things from the corresponding package, but simply importingcollections.abc
ascollections
doesn't work.a1d4fca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I sent #1 which should address this, PTAL.