mirror of
https://github.com/python/cpython.git
synced 2025-10-06 15:11:58 +00:00
Merge for issue #26186
This commit is contained in:
commit
e5f4d3c246
4 changed files with 4 additions and 6 deletions
|
@ -263,11 +263,6 @@ class LazyLoader(abc.Loader):
|
|||
def __check_eager_loader(loader):
|
||||
if not hasattr(loader, 'exec_module'):
|
||||
raise TypeError('loader must define exec_module()')
|
||||
elif hasattr(loader.__class__, 'create_module'):
|
||||
if abc.Loader.create_module != loader.__class__.create_module:
|
||||
# Only care if create_module() is overridden in a subclass of
|
||||
# importlib.abc.Loader.
|
||||
raise TypeError('loader cannot define create_module()')
|
||||
|
||||
@classmethod
|
||||
def factory(cls, loader):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue