示例#1
0
 def __init__(self, space, d):
     W_Object.__init__(self, space)
     self.iterator = d.iteritems()
示例#2
0
 def __init__(self, space):
     W_Object.__init__(self, space)
     self.contents = OrderedDict(space.eq_w, space.hash_w)
示例#3
0
 def __init__(self, space, storage, strategy):
     W_Object.__init__(self, space)
     self.str_storage = storage
     self.strategy = strategy
示例#4
0
 def __init__(self, space, w_start, w_end, exclusive):
     W_Object.__init__(self, space)
     self.w_start = w_start
     self.w_end = w_end
     self.exclusive = exclusive
示例#5
0
 def __init__(self, space, klass):
     W_Object.__init__(self, space, klass)
     self.epoch_seconds = 0
示例#6
0
 def __init__(self, space):
     W_Object.__init__(self, space)
     self.fd = -1
示例#7
0
 def __init__(self, space, items_w):
     W_Object.__init__(self, space)
     self.items_w = items_w
示例#8
0
 def __init__(self, space, regexp):
     W_Object.__init__(self, space)
     self.regexp = regexp
示例#9
0
 def __init__(self, space, klass=None):
     W_Object.__init__(self, space, klass)
     self.random = Random()
示例#10
0
 def __init__(self, space, msg, klass=None):
     W_Object.__init__(self, space, klass)
     self.msg = msg
     self.frame = None
     self.last_instructions = []
示例#11
0
 def __init__(self, space, items_w):
     W_Object.__init__(self, space)
     self.items_w = items_w
示例#12
0
 def __init__(self, space, storage, strategy):
     W_Object.__init__(self, space)
     self.str_storage = storage
     self.strategy = strategy
示例#13
0
 def __init__(self, space, symbol):
     W_Object.__init__(self, space)
     self.symbol = symbol
示例#14
0
 def __init__(self, space, block, is_lambda):
     W_Object.__init__(self, space)
     self.block = block
     self.is_lambda = is_lambda
示例#15
0
 def __init__(self, space):
     W_Object.__init__(self, space)
     self.fd = -1