[issue43643] importlib.readers.MultiplexedPath.name is not a property

2021-03-27 Thread Andreas Poehlmann
New submission from Andreas Poehlmann : Hello, I was using the `importlib_resources` backport and encountered this issue, which is also present in cpython: `importlib.readers.MultiplexedPath.name` is not a property as required by `importlib.abc.Traversable` I can prepare a pull request

[issue42487] collections.ChainMap.__iter__ calls __getitem__ on underlying maps

2020-11-27 Thread Andreas Poehlmann
Change by Andreas Poehlmann : -- keywords: +patch pull_requests: +22416 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23534 ___ Python tracker <https://bugs.python.org/issu

[issue42487] collections.ChainMap.__iter__ calls __getitem__ on underlying maps

2020-11-27 Thread Andreas Poehlmann
New submission from Andreas Poehlmann : Hello, I encountered an issue with collections.ChainMap, that was introduced when https://bugs.python.org/issue32792 got fixed. Iterating a ChainMap will call __getitem__ on its underlying maps: >>> from collections import UserDict,