mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
according to PY-9639 Extract method: Replace Duplicates: search duplicates by code tree, not by exact text match
7 lines
129 B
Python
7 lines
129 B
Python
def f():
|
|
a = do_smth()
|
|
b1 = <caret>do_smth_with(a)
|
|
a = do_smth()
|
|
b = do_smth_with(a + 1)
|
|
do_smth_with(b1, b)
|