Exemplo n.º 1
0
 def __init__(self, space, ec):
     StackletThread.__init__(self)
     self.space = space
     self.ec = ec
     # for unpickling
     from rpython.rlib.rweakref import RWeakKeyDictionary
     self.frame2continulet = RWeakKeyDictionary(PyFrame, W_Continulet)
Exemplo n.º 2
0
 def __init__(self, space, ec):
     StackletThread.__init__(self, space.config)
     self.space = space
     self.ec = ec
     # for unpickling
     from rpython.rlib.rweakref import RWeakKeyDictionary
     self.frame2continulet = RWeakKeyDictionary(PyFrame, W_Continulet)
Exemplo n.º 3
0
 def __init__(self, config):
     StackletThread.__init__(self, config)
     self.cont = None
Exemplo n.º 4
0
 def __init__(self, config, ec):
     StackletThread.__init__(self, config)
     self.config = config
     self.ec = ec
Exemplo n.º 5
0
 def __init__(self, config):
     StackletThread.__init__(self, config)
     self.cont = None
Exemplo n.º 6
0
 def __init__(self, config, ec):
     StackletThread.__init__(self, config)
     self.config = config
     self.ec = ec