1
0
forked from VimPlug/jedi

more tests for next/iter combinations

This commit is contained in:
David Halter
2012-08-07 00:49:36 +02:00
parent 6fdc305551
commit b2abf241ae
2 changed files with 14 additions and 0 deletions

View File

@@ -26,11 +26,17 @@ for a4, (b4, c4) in (1,("", list)), (1,("", list)):
a = []
for i in [1,'']:
#? int() str()
i
a += [i]
#? int() str()
a[0]
for i in list([1,'']):
#? int() str()
i
a = []
b = [1.0,'']
for i in b: