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.

classification
Title: Implement __subclasshook__() for Finders and Loaders in importlib.abc
Type: enhancement Stage: patch review
Components: Library (Lib) Versions: Python 3.4
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: eric.snow, ncoghlan
Priority: normal Keywords: easy, patch

Created on 2013-08-28 03:10 by eric.snow, last changed 2022-04-11 14:57 by admin.

Files
File name Uploaded Description Edit
issue18862-importlib-abc-subclasshooks.diff eric.snow, 2013-10-05 05:10 review
Messages (2)
msg196346 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2013-08-28 03:10
It would be helpful to have __subclasshook__() implemented on the finders and loaders in importlib.abc, following the approach taken by ABCs in collections.abc.  This came up relative to PEP 431, but would be generally useful (if only to a limited audience <wink>).
msg198982 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2013-10-05 05:10
Here's a patch.
History
Date User Action Args
2022-04-11 14:57:50adminsetgithub: 63062
2020-03-06 20:29:42brett.cannonsetnosy: - brett.cannon
2013-10-05 05:10:49eric.snowsetfiles: + issue18862-importlib-abc-subclasshooks.diff
keywords: + patch
messages: + msg198982

stage: test needed -> patch review
2013-08-28 03:10:36eric.snowcreate