mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 19:28:58 +07:00
Helper method PyUtil#addElementToStatementList moves old statement list on the next line (below the header of the parent statement), if necessary, *before* the new statement is inserted. If it's done afterwards and new statement is multiline, it might not be properly indented.
4 lines
152 B
Python
4 lines
152 B
Python
def func(x, # comment
|
|
mutable=<warning descr="Default argument value is mutable">[<caret>]</warning>):
|
|
"""Docstring."""
|
|
print(mutable) |