Skip to content

Commit

Permalink
Fix GitHub source code links for decorated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Arellano committed Oct 4, 2024
1 parent 3838dbb commit be33a5c
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,26 @@ def linkcode_resolve(domain, info):
if module is None or "qiskit_ibm_transpiler" not in module_name:
return None

def is_valid_code_object(obj):
return (
inspect.isclass(obj) or inspect.ismethod(obj) or inspect.isfunction(obj)
)

obj = module
for part in info["fullname"].split("."):
try:
obj = getattr(obj, part)
except AttributeError:
return None
is_valid_code_object = (
inspect.isclass(obj) or inspect.ismethod(obj) or inspect.isfunction(obj)
)
if not is_valid_code_object:
if not is_valid_code_object(obj):
return None

# Unwrap decorators. This requires they used `functools.wrap()`.
while hasattr(obj, "__wrapped__"):
obj = getattr(obj, "__wrapped__")
if not is_valid_code_object(obj):
return None

try:
full_file_name = inspect.getsourcefile(obj)
except TypeError:
Expand Down

0 comments on commit be33a5c

Please sign in to comment.