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

8 lines
82 B
Python

def foo(a, /, b):
print(a, b)
def egg():
a = 1
b = 2
foo(<caret>