示例#1
0
 def __init__(self):
   self.cache_copy = {}
   self.cache_conv = {}
   self.nullobj = None
   BuiltinType.__init__(self)
   BuiltinCallable.__init__(self, self.TYPE_NAME, [], [ANY])
   return
 def __init__(self):
     self.cache_copy = {}
     self.cache_conv = {}
     self.nullobj = None
     BuiltinType.__init__(self)
     BuiltinCallable.__init__(self, self.TYPE_NAME, [], [ANY])
     return
示例#3
0
 def __init__(self, name, args=None, optargs=None, expts=None):
     BuiltinCallable.__init__(self,
                              name,
                              args=args,
                              optargs=optargs,
                              expts=expts)
     BuiltinType.__init__(self)
     return
示例#4
0
 def __init__(self, name, args=None, optargs=None, expts=None):
   BuiltinCallable.__init__(self, name, args=args, optargs=optargs, expts=expts)
   BuiltinType.__init__(self)
   return
 def __init__(self):
     BuiltinType.__init__(self)
     BuiltinCallable.__init__(self, self.TYPE_NAME, [ANY])
     return
 def __init__(self):
     BuiltinType.__init__(self)
     BuiltinCallable.__init__(self, 'enumerate', [ANY])
     return
示例#7
0
 def __init__(self):
   BuiltinType.__init__(self)
   BuiltinCallable.__init__(self, self.TYPE_NAME, [ANY])
   return
示例#8
0
 def __init__(self):
   BuiltinType.__init__(self)
   BuiltinCallable.__init__(self, 'enumerate', [ANY])
   return
示例#9
0
 def __init__(self, name='staticmethod', wrapper=StaticMethodObject):
   self.wrapper = wrapper
   BuiltinType.__init__(self)
   BuiltinCallable.__init__(self, name, [ANY])
   return
示例#10
0
 def __init__(self, name='staticmethod', wrapper=StaticMethodObject):
     self.wrapper = wrapper
     BuiltinType.__init__(self)
     BuiltinCallable.__init__(self, name, [ANY])
     return