本文整理汇总了Python中topaz.objects.moduleobject.W_ModuleObject类的典型用法代码示例。如果您正苦于以下问题:Python W_ModuleObject类的具体用法?Python W_ModuleObject怎么用?Python W_ModuleObject使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了W_ModuleObject类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
def __init__(self, space, name, superclass, is_singleton=False):
W_ModuleObject.__init__(self, space, name)
self.superclass = superclass
self.is_singleton = is_singleton
if self.superclass is not None:
self.superclass.inherited(space, self)
# During bootstrap, we cannot create singleton classes, yet
if not self.is_singleton and not space.bootstrap:
self.getsingletonclass(space)
示例2: ancestors
def ancestors(self, include_singleton=True, include_self=True):
assert include_self
ary = W_ModuleObject.ancestors(self,
include_singleton, not (self.is_singleton and not include_singleton)
)
if self.superclass is not None:
ary += self.superclass.ancestors(include_singleton)
return ary
示例3: methods
def methods(self, space, inherit=True):
methods = {}
for name in W_ModuleObject.methods(self, space, inherit):
methods[name] = None
if inherit and self.superclass is not None:
for name in self.superclass.methods(space, inherit):
method = self._find_method_pure(space, name, self.version)
if method is None or not isinstance(method, UndefMethod):
methods[name] = None
return methods.keys()
示例4: inherited_constants
def inherited_constants(self, space):
consts = {}
for const in W_ModuleObject.local_constants(self, space):
consts[const] = None
w_cls = self.superclass
while w_cls is not None:
for const in w_cls.local_constants(space):
consts[const] = None
w_cls = w_cls.superclass
return consts.keys()
示例5: find_method_super
def find_method_super(self, space, name):
method = W_ModuleObject.find_method_super(self, space, name)
if method is None and self.superclass is not None:
method = self.superclass.find_method(space, name)
return method
示例6: find_const
def find_const(self, space, name):
w_res = W_ModuleObject.find_included_const(self, space, name)
if w_res is None and self.superclass is not None:
w_res = self.superclass.find_const(space, name)
return w_res
示例7: method_undefined
def method_undefined(self, space, w_name):
if self.is_singleton:
space.send(self.attached, "singleton_method_undefined", [w_name])
else:
W_ModuleObject.method_undefined(self, space, w_name)