Skip to content

Commit b47dd53

Browse files
stubgen: Fix the detection of modules without spec.
This PR changes the logic of `is_valid_module` used in `simplify_types`. That function uses `importlib.util.find_spec` and previously tested the return value for `is None`. However, (1) if the spec is actually `None`, then the function doesn't return `None` but raises `ValueError`, so that test never succeeded and (2) if a module with a `None` spec was found, we have still found a module, so `is_valid_module` should actually return `True` instead of `False`. Signed-off-by: Ingo Müller <[email protected]>
1 parent ab05b01 commit b47dd53

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/stubgen.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -649,8 +649,14 @@ def process_ndarray(m: Match[str]) -> str:
649649
def process_general(m: Match[str]) -> str:
650650
def is_valid_module(module_name: str) -> bool:
651651
try:
652-
return importlib.util.find_spec(module_name) is not None
653-
except (ModuleNotFoundError, ValueError):
652+
importlib.util.find_spec(module_name)
653+
# If we get here, the module exists and has a valid spec.
654+
return True
655+
except ValueError:
656+
# The module exists but has no spec, `find_spec` raises a
657+
# `ValueError`, so if we get here, the module does exist.
658+
return True
659+
except ModuleNotFoundError:
654660
return False
655661

656662
full_name, mod_name, cls_name = m.group(0), m.group(1)[:-1], m.group(2)

0 commit comments

Comments
 (0)