Files
jedi/test/refactor/extract.py
2013-01-06 01:49:41 +01:00

18 lines
256 B
Python

# --- a
def test():
#? 25 a
return test(1, (30 + b, c) + 1)
# +++
def test():
a = (30 + b, c) + 1
return test(a)
# --- multiline
def test():
return test(1, (30 + b, c) + 1)
# +++
def test():
a = (30 + b, c) + 1
return test(a)