Пример #1
0
 def find_method(self, space, name):
     method = W_ModuleObject.find_method(self, space, name)
     if method is None and self.superclass is not None:
         method = self.superclass.find_method(space, name)
     return method
Пример #2
0
 def find_method(self, space, name):
     method = W_ModuleObject.find_method(self, space, name)
     if method is None and self.superclass is not None:
         method = self.superclass.find_method(space, name)
     return method