forked from VimPlug/jedi
raw_doc additionally, for #53
This commit is contained in:
@@ -83,6 +83,14 @@ class Completion(object):
|
||||
except AttributeError:
|
||||
return ''
|
||||
|
||||
@property
|
||||
def raw_doc(self):
|
||||
""" Returns the docstring `__doc__` for any object """
|
||||
try:
|
||||
return str(self.name.parent().docstr)
|
||||
except AttributeError :
|
||||
return ''
|
||||
|
||||
@property
|
||||
def type(self):
|
||||
""" Returns the type of a completion object (e.g. Function/Class) """
|
||||
|
||||
Reference in New Issue
Block a user