コード例 #1
0
ファイル: hashobject.py プロジェクト: gnprice/rupypy
 def __init__(self, space, d):
     W_Object.__init__(self, space)
     self.iterator = d.iteritems()
コード例 #2
0
ファイル: hashobject.py プロジェクト: gnprice/rupypy
 def __init__(self, space):
     W_Object.__init__(self, space)
     self.contents = OrderedDict(space.eq_w, space.hash_w)
コード例 #3
0
ファイル: stringobject.py プロジェクト: gnprice/rupypy
 def __init__(self, space, storage, strategy):
     W_Object.__init__(self, space)
     self.str_storage = storage
     self.strategy = strategy
コード例 #4
0
ファイル: rangeobject.py プロジェクト: gnprice/rupypy
 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
ファイル: fileobject.py プロジェクト: gnprice/rupypy
 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
ファイル: regexpobject.py プロジェクト: gnprice/rupypy
 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
ファイル: arrayobject.py プロジェクト: gnprice/rupypy
 def __init__(self, space, items_w):
     W_Object.__init__(self, space)
     self.items_w = items_w
コード例 #12
0
ファイル: stringobject.py プロジェクト: gnprice/rupypy
 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
ファイル: procobject.py プロジェクト: gnprice/rupypy
 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