1
0
forked from VimPlug/jedi

Fix an issue with partial keyword inputs.

This commit is contained in:
Dave Halter
2014-08-14 12:24:54 +02:00
parent 1540ac89f8
commit 425290aa8f
2 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -6,4 +6,4 @@ class partial():
def __call__(self, *args, **kwargs):
# I know this doesn't work in Python, but in Jedi it does ;-)
return self.__func(*self.__args, *args, **self.keywords, **kwargs)
return self.__func(*self.__args, *args, **self.__keywords, **kwargs)