Files
openide/python/testData/multipleArgumentsCompletion/notSuggestIfNotEnoughArgumentsInTheScopeOfNestedFunction.py
andrey.matveev a350ff045f PY-46668 Impl multiple arguments completion contributor
(cherry picked from commit 42efe6a20f52cfb3bd827a2b68d1fb6cc3949626)

IJ-MR-5791

GitOrigin-RevId: e2a40572b0de4919a5049ff06e437b34d78c296c
2021-02-15 13:29:14 +00:00

11 lines
121 B
Python

def foo(x, y, z):
pass
def bar():
z = 33
def baz():
x = 42
y = 100500
foo(<caret>)