diff --git a/jedi/inference/star_args.py b/jedi/inference/star_args.py index 521cd4eb..71ea7093 100644 --- a/jedi/inference/star_args.py +++ b/jedi/inference/star_args.py @@ -12,6 +12,8 @@ The signature here for bar should be `bar(b, c)` instead of bar(*args). """ from inspect import Parameter +from parso import tree + from jedi.inference.utils import to_list from jedi.inference.names import ParamNameWrapper from jedi.inference.helpers import is_big_annoying_library @@ -22,7 +24,11 @@ def _iter_nodes_for_param(param_name): from jedi.inference.arguments import TreeArguments execution_context = param_name.parent_context - function_node = execution_context.tree_node + # Walk up the parso tree to get the FunctionNode we want. We use the parso + # tree rather than going via the execution context so that we're agnostic of + # the specific scope we're evaluating within (i.e: module or function, + # etc.). + function_node = tree.search_ancestor(param_name.tree_name, 'funcdef', 'lambdef') module_node = function_node.get_root_node() start = function_node.children[-1].start_pos end = function_node.children[-1].end_pos diff --git a/test/test_inference/test_signature.py b/test/test_inference/test_signature.py index 85adaff7..9ee8a55c 100644 --- a/test/test_inference/test_signature.py +++ b/test/test_inference/test_signature.py @@ -267,19 +267,19 @@ def test_pow_signature(Script, environment): @pytest.mark.parametrize( 'code, signature', [ [dedent(''' + # identifier:A import functools def f(x): pass def x(f): @functools.wraps(f) def wrapper(*args): - # Have no arguments here, but because of wraps, the signature - # should still be f's. return f(*args) return wrapper x(f)('''), 'f(x, /)'], [dedent(''' + # identifier:B import functools def f(x): pass @@ -292,6 +292,26 @@ def test_pow_signature(Script, environment): return wrapper x(f)('''), 'f()'], + [dedent(''' + # identifier:C + import functools + def f(x: int, y: float): + pass + + @functools.wraps(f) + def wrapper(*args, **kwargs): + return f(*args, **kwargs) + + wrapper('''), 'f(x: int, y: float)'], + [dedent(''' + # identifier:D + def f(x: int, y: float): + pass + + def wrapper(*args, **kwargs): + return f(*args, **kwargs) + + wrapper('''), 'wrapper(x: int, y: float)'], ] ) def test_wraps_signature(Script, code, signature):