forked from VimPlug/jedi
more tests for next/iter combinations
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user