Files
openide/python/testData/refactoring/changeSignature/newParameterWithCallDefaultBeforeExistingWithoutDefault.after.py
Mikhail Golubev 75aa86a60c Refine existing tests and add new ones on default parameter validation
GitOrigin-RevId: 79accefa3b8542088cfa68cc44ae79ca911e7a29
2020-04-17 12:46:38 +00:00

7 lines
48 B
Python

def foo(a, b):
pass
foo(2, 1)
foo(2, b=1)