1
0
forked from VimPlug/jedi
Files
jedi-fork/test/refactor/inline.py
David Halter 53a5bf6be8 inline tests
2013-01-07 20:20:02 +01:00

9 lines
138 B
Python

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