Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions 10 Lib/importlib/_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,6 @@ def spec_from_loader(name, loader, *, origin=None, is_package=None):
return ModuleSpec(name, loader, origin=origin, is_package=is_package)


_POPULATE = object()


def _spec_from_module(module, loader=None, origin=None):
# This function is meant for use in _setup().
try:
Expand Down Expand Up @@ -953,13 +950,16 @@ def _find_and_load_unlocked(name, import_):
return module


_NEEDS_LOADING = object()


def _find_and_load(name, import_):
"""Find and load the module."""
with _ModuleLockManager(name):
if name not in sys.modules:
module = sys.modules.get(name, _NEEDS_LOADING)
if module is _NEEDS_LOADING:
return _find_and_load_unlocked(name, import_)

module = sys.modules[name]
if module is None:
message = ('import of {} halted; '
'None in sys.modules'.format(name))
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.