mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
259 B
Python
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 |