1
0
forked from VimPlug/jedi

changed the way the tests react, when multiple elements are produced

This commit is contained in:
David Halter
2012-07-12 16:19:47 +02:00
parent c84ca8f897
commit 4739eb6c02
5 changed files with 12 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
# -----------------
for a in [1,2]:
#? int() int()
#? int()
a
for a1 in 1,"":
@@ -11,15 +11,15 @@ for a1 in 1,"":
a1
for a3, b3 in (1,""), (1,""), (1,""):
#? int() int() int()
#? int()
a3
#? str() str() str()
#? str()
b3
for a4, (b4, c4) in (1,("", list)), (1,("", list)):
#? int() int()
#? int()
a4
#? str() str()
#? str()
b4
#? list
c4