mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Delete targets condition in createCodeFragment and filter duplicates GitOrigin-RevId: 474f3634a06c9cff25bafc94e1651d4fe61fb2a0
7 lines
110 B
Python
7 lines
110 B
Python
def compound_duplicate(p1, p2):
|
|
print(bar(p1))
|
|
print(bar(p2))
|
|
|
|
|
|
def bar(p1_new):
|
|
return p1_new + 1 |