1
0
forked from VimPlug/jedi

Add is_compiled and a few other things to be more compatible with the new way of handling stubs

This commit is contained in:
Dave Halter
2019-05-05 13:23:29 +02:00
parent 4d3a698a12
commit 329270e444
4 changed files with 29 additions and 10 deletions

View File

@@ -99,6 +99,9 @@ class CompiledObject(Context):
def is_class(self):
return self.access_handle.is_class()
def is_compiled(self):
return True
def py__doc__(self, include_call_signature=False):
return self.access_handle.py__doc__()