You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
770 B
46 lines
770 B
class s(object):
|
|
t: object = None
|
|
|
|
class r(object):
|
|
sobj: s = None
|
|
|
|
class q(object):
|
|
robj: r = None
|
|
|
|
class p(q):
|
|
def f(self: "p") -> object:
|
|
return self.robj.sobj.t
|
|
|
|
def a() -> int:
|
|
def b() -> int:
|
|
def c() -> int:
|
|
def d() -> int:
|
|
def e() -> int:
|
|
return 1
|
|
return e()
|
|
return d()
|
|
return c()
|
|
return b()
|
|
|
|
def w():
|
|
def x():
|
|
def y():
|
|
def z():
|
|
4
|
|
3
|
|
2
|
|
1
|
|
|
|
xs: [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[int]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] = None
|
|
xs = [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[1]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
|
|
|
|
if 1:
|
|
if 2:
|
|
if 3:
|
|
if 4:
|
|
True
|
|
elif -3:
|
|
False
|
|
else:
|
|
False
|