1
0
forked from VimPlug/jedi
Files
jedi-fork/test/refactor/inline.py
2020-02-13 09:34:33 +01:00

21 lines
456 B
Python

# -------------------------------------------------- simple-1
def test():
#? 4
a = (30 + b, c) + 1
return test(100, a)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
def test():
#? 4
return test(100, (30 + b, c) + 1)
# -------------------------------------------------- simple-2
if 1:
#? 4
a = 1, 2
return test(100, a)
# ++++++++++++++++++++++++++++++++++++++++++++++++++
if 1:
#? 4
return test(100, (1, 2))