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