Пример #1
0
 def find_const(self, space, name):
     w_res = W_ModuleObject.find_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