1
0
forked from VimPlug/jedi

Fixed an issue with ArrayInstances that were using name lookups, which it doesn't have.

This commit is contained in:
Dave Halter
2015-03-03 02:39:02 +01:00
parent 5322c4a965
commit 1520ebf557
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ class set():
yield i
def pop(self):
return self.__iterable.pop()
return list(self.__iterable)[-1]
def copy(self):
return self