1
0
forked from VimPlug/jedi

test for class inheritance renaming

This commit is contained in:
David Halter
2012-12-24 17:22:45 +01:00
parent 1a4b556ddb
commit 70b949b6e5

View File

@@ -80,3 +80,14 @@ response['Content-Disposition'] = 'attachment; filename=%s.pdf' % id
response.write(pdf)
#< (-4,0), (-3,0), (-2,0), (0,0)
response
class Inheritance(object): pass
#< 20 (0,17), (-3,6)
class TestClass(Inheritance):
def a():
pass
def b():
pass