1
0
forked from VimPlug/jedi

Fix: Array additions (append, insert) should not cause an additional py__iter__ entry if there's none.

This commit is contained in:
Dave Halter
2015-12-01 22:57:54 +01:00
parent 53dbdf22a2
commit 41537a78e1
2 changed files with 7 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ left, right = [x for x in (left, right)]
left
# with a dict literal
#? str()
#? int()
[a for a in {1:'x'}][0]
# list comprehensions should also work in combination with functions