[issue43207] InspectLoader.is_package is not an abstract method

2021-07-12 Thread Łukasz Langa
Change by Łukasz Langa : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43207] InspectLoader.is_package is not an abstract method

2021-07-12 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 779983ed7f86610be4a7201deeffdcb8608977e0 by Miss Islington (bot) in branch '3.9': bpo-43207: InspectLoader.is_package is not an abstract method (GH-24517) (#26322) https://github.com/python/cpython/commit/779983ed7f86610be4a7201deeffdcb8608977e0

[issue43207] InspectLoader.is_package is not an abstract method

2021-05-23 Thread miss-islington
miss-islington added the comment: New changeset 069bc4f5b45b28c7685d01c2b86659887f33f804 by Miss Islington (bot) in branch '3.10': bpo-43207: InspectLoader.is_package is not an abstract method (GH-24517) https://github.com/python/cpython/commit/069bc4f5b45b28c7685d01c2b86659887f33f804

[issue43207] InspectLoader.is_package is not an abstract method

2021-05-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +24916 pull_request: https://github.com/python/cpython/pull/26322 ___ Python tracker ___

[issue43207] InspectLoader.is_package is not an abstract method

2021-05-23 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24915 pull_request: https://github.com/python/cpython/pull/26321 ___ Python tracker

[issue43207] InspectLoader.is_package is not an abstract method

2021-02-12 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 2.0 -> 3.0 pull_requests: +23304 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24517 ___ Python tracker

[issue43207] InspectLoader.is_package is not an abstract method

2021-02-12 Thread Jun
New submission from Jun : In the documentation of importlib: https://docs.python.org/3/library/importlib.html#importlib.abc.InspectLoader It says InspectLoader.is_package is an abstract method while it is not in the implementation. @abc.abstractmethod decorator was removed with this commit