1
0
forked from VimPlug/jedi

Fix docstrings for method decorators, fixes #1621

This commit is contained in:
Dave Halter
2020-06-27 00:13:51 +02:00
parent 59ccd2da93
commit 9a54e583e7
3 changed files with 31 additions and 2 deletions

View File

@@ -119,7 +119,9 @@ def execute(callback):
else:
return call()
if value.is_bound_method():
if value.is_bound_method() or value.is_instance():
# value can be an instance for example if it is a partial
# object.
return call()
# for now we just support builtin functions.