1
0
forked from VimPlug/jedi

Fix python 2 string iterators.

This commit is contained in:
Dave Halter
2016-12-03 02:08:40 +01:00
parent ba8a3215f2
commit da1a163da7
4 changed files with 21 additions and 2 deletions

View File

@@ -89,6 +89,9 @@ b = [b for arr in [[[1.0]]] for a in arr for b in a]
#? float()
b[0]
#? str()
[x for x in 'chr'][0]
# jedi issue #26
#? list()
a = [[int(v) for v in line.strip().split() if v] for line in ["123", "123", "123"] if line]