Merge pull request #1889 from AndrewAmmerlaan/master

python3.11 compatibility
This commit is contained in:
Dave Halter
2022-10-20 19:08:52 +00:00
committed by GitHub

View File

@@ -151,7 +151,11 @@ def _find_module(string, path=None, full_name=None, is_global_search=True):
spec = find_spec(string, p) spec = find_spec(string, p)
if spec is not None: if spec is not None:
if spec.origin == "frozen":
continue
loader = spec.loader loader = spec.loader
if loader is None and not spec.has_location: if loader is None and not spec.has_location:
# This is a namespace package. # This is a namespace package.
full_name = string if not path else full_name full_name = string if not path else full_name