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