cpython/Lib/importlib
Brett Cannon 558823a0cf Issue #26186: Remove an invalid type check in
importlib.util.LazyLoader.

The class was checking its argument as to whether its implementation
of create_module() came directly from importlib.abc.Loader. The
problem is that the classes coming from imoprtlib.machinery do not
directly inherit from the ABC as they come from _frozen_importlib.
Because the documentation has always said that create_module() was
ignored, the check has simply been removed.
2016-02-20 18:35:41 -08:00
..
__init__.py
_bootstrap.py Issue #26367: Have importlib.__init__() raise RuntimeError when 2016-02-20 12:52:06 -08:00
_bootstrap_external.py
abc.py Issue #26186: Remove an invalid type check in 2016-02-20 18:35:41 -08:00
machinery.py
util.py Issue #26186: Remove an invalid type check in 2016-02-20 18:35:41 -08:00