1
0
forked from VimPlug/jedi

improved goto on assignees (just return the assignee).

This commit is contained in:
David Halter
2012-12-26 20:53:15 +01:00
parent e020c6b792
commit 3bf0ec70fc
5 changed files with 32 additions and 15 deletions

View File

@@ -82,12 +82,15 @@ response.write(pdf)
response
class Inheritance(object): pass
class Super(object):
base_class = 1
def base_method(self):
self.base_var
#< 20 (0,17), (-3,6)
class TestClass(Inheritance):
def a():
#< 20 (0,16), (-6,6)
class TestClass(Super):
def a(self):
pass
def b():
def b(self):
pass