Files
openide/python/testData/refactoring/extractmethod/StartInArgumentListOfMultiLineFunctionCall.before.py
chbndrhnns 7da7493efe PY-53711 Fix: Cannot extract a method if arguments are on separate line
GitOrigin-RevId: d48d96ba69345ec949272b56635c2efc8b3b433c
2025-04-07 20:51:34 +00:00

10 lines
259 B
Python

def long_function_name(**kwargs): ...
def example_function():
result = long_function_name(
first_argument<caret>="value1",
second_argument="value2",
third_argument="value3"
)
processed = result.upper()
return processed