1
0
forked from VimPlug/jedi

Separate getting docstrings and getting signatures for names, see discussion #1466

This commit is contained in:
Dave Halter
2020-01-01 22:58:52 +01:00
parent bb3a81c578
commit 0a53ce5136
6 changed files with 56 additions and 40 deletions

View File

@@ -301,7 +301,7 @@ class CompiledName(AbstractNameDefinition):
self.parent_context = parent_context
self.string_name = name
def py__doc__(self, include_signatures=False):
def py__doc__(self):
value, = self.infer()
return value.py__doc__()