forked from VimPlug/jedi
Some sother small test improvements
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
# -------------------------------------------------- simple
|
||||
# -------------------------------------------------- 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
|
||||
# -------------------------------------------------- simple-2
|
||||
if 1:
|
||||
#? 4
|
||||
a = 1, 2
|
||||
return test(100, a)
|
||||
# ++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
if 1:
|
||||
#? 4
|
||||
return test(100, (1, 2))
|
||||
|
||||
Reference in New Issue
Block a user