1
0
forked from VimPlug/jedi

pydoc works now also if the cursor is on the class / created context possibility for completions (backward tokenizer)

This commit is contained in:
David Halter
2012-09-05 14:19:40 +02:00
parent 37df49d598
commit abcd3f328a
4 changed files with 52 additions and 7 deletions

View File

@@ -120,3 +120,17 @@ def func():
#! 8 ['def b']
func().b()
# -----------------
# get_definition
# -----------------
#! 7 ['class ClassDef']
class ClassDef():
""" abc """
pass
##? 6 ClassDef2()
class ClassDef2():
""" abc """
pass