Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix failing test
  • Loading branch information
jacobtylerwalls committed Feb 24, 2024
commit 78a1232ff8825e650061fe64616443148194235c
2 changes: 1 addition & 1 deletion Lib/importlib/_bootstrap_external.py
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ def _get_parent_path(self):
try:
module = sys.modules[parent_module_name]
except KeyError:
return None
return sys.path
Comment thread
brettcannon marked this conversation as resolved.
Outdated
return getattr(module, path_attr_name)
Comment thread
brettcannon marked this conversation as resolved.
Outdated

def _recalculate(self):
Expand Down