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