forked from VimPlug/jedi
19 lines
321 B
Python
19 lines
321 B
Python
|
|
from jedi import functions
|
|
|
|
el = functions.complete()[0]
|
|
#? ['description']
|
|
el.description
|
|
|
|
#? str()
|
|
el.description
|
|
|
|
|
|
scopes, path, dot, like = \
|
|
functions.prepare_goto(source, row, column,
|
|
source_path, True)
|
|
|
|
# has problems with that (sometimes) very deep nesting.
|
|
#? str()
|
|
el = scopes.
|