1
0
forked from VimPlug/jedi

getnames for scopes

This commit is contained in:
David Halter
2012-03-01 10:43:34 +01:00
parent 2c1108db1c
commit e8889ae420
3 changed files with 48 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ class Intro(object):
return string+","
class Supi(A, datetime.datetime):
""" test123 """
r""" test123 """
class 2
static_var = 0
@@ -30,11 +30,15 @@ class A():
#class B():
def test(self):
return A()
class init:
def __init__(self, a):
self.a = a
a = A()
b = a.test()
c = a or b
c = a or c
class Empty():
pass