【发布时间】:2012-09-01 04:19:22
【问题描述】:
例如这可能吗?
class Foo(object):
class Meta:
pass
class Bar(Foo):
def __init__(self):
# remove the Meta class here?
super(Bar, self).__init__()
【问题讨论】:
标签: python inheritance class-variables