예제 #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