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

@@ -54,3 +54,11 @@ for a in Get():
b
#? int() str()
b[0]
g = iter(Get())
#? int() str()
next(g)
g = iter([1.0])
#? float()
next(g)