1
0
forked from VimPlug/jedi

Dict.values is working now on dict literals.

This commit is contained in:
Dave Halter
2015-12-27 23:53:56 +01:00
parent 48f41c5231
commit 4e93fb344b
3 changed files with 31 additions and 9 deletions
+3
View File
@@ -202,6 +202,9 @@ class dict():
except KeyError:
return d
def values(self):
return self.__elements.values()
def setdefault(self, k, d):
# TODO maybe also return the content
return d