mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 15:50:03 +08:00
14 lines
152 B
Python
14 lines
152 B
Python
|
class Base(object):
|
||
|
class Nested():
|
||
|
def foo():
|
||
|
pass
|
||
|
|
||
|
|
||
|
class X(Base.Nested):
|
||
|
pass
|
||
|
|
||
|
|
||
|
X().foo()
|
||
|
#! 4 attribute-error
|
||
|
X().bar()
|