Files
openide/python/testData/completion/superMethodWithExistingParameterList.py
Daniil Kalinin fb11ee327c PY-53200 do not autocomplete parameter list if method already have one
Test for PY-53200

Better tests for PY-53200

PY-53200 Removed unnecessary test.

`testMethodNamesDoNotDuplicateParameterList` renamed and moved closer to the corresponding ones
Removed test for method names in suggestions restored

GitOrigin-RevId: 51b0721190718c44810c16e198bad583c2af67d0
2022-05-05 11:18:29 +00:00

7 lines
110 B
Python

class Me:
def something_a(self):
...
class Stub(Me):
def something_<caret>(self):
...