Files
openide/python/testData/multipleArgumentsCompletion/noExceptionIfMoreArgumentsWithImplicitThanParameters.py
andrey.matveev 135babbf04 EA-256745 Fix IllegalArgumentException in PyMultipleArgumentsCompletionContributor
(cherry picked from commit 4ee05e67c7b76c19627cb5e7018db71c96c41ebe)

IJ-MR-6318

GitOrigin-RevId: a1f4717881c910c84c6458a28a0caab6217bba55
2021-03-02 13:30:27 +00:00

9 lines
146 B
Python

class C:
def foo(self, x, y):
pass
def bar(self):
x = 22
y = 33
z = 44
self.foo(x, y, z, <caret>)