Files
openide/python/testData/multipleArgumentsCompletion/classMember.after.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

9 lines
146 B
Python

class Foo:
def foo(self, x, y, z):
pass
def bar(self):
x = 1
y = 2
z = 3
self.foo(x, y, z)<caret>