1
0
forked from VimPlug/jedi

fixed edge cases of dynamic array completion, which led to StopIteration

This commit is contained in:
David Halter
2012-10-10 23:10:25 +02:00
parent 8059b075c6
commit b204f2f5d9
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -383,6 +383,8 @@ first(1.0)[0]
def third():
b = []
b.extend
extend()
b.extend(first())
return list(b)
#?