Closed GoogleCodeExporter closed 9 years ago
Original comment by flier...@gmail.com
on 19 Mar 2010 at 2:27
I am still able to reproduce this defect. What is its status?
Original comment by PremyslK...@gmail.com
on 13 Aug 2010 at 12:04
Can't reproduce it with the latest SVN trunk code, but we must enter a isolate
before use it in a separate thread
from __future__ import with_statement
import PyV8
from threading import Thread
class PyV8Tread(Thread):
def run(self):
with PyV8.JSIsolate():
with PyV8.JSContext() as context:
context.eval("1+1")
del context
t1 = PyV8Tread()
t2 = PyV8Tread()
t3 = PyV8Tread()
t1.start()
t2.start()
t3.start()
Original comment by flier...@gmail.com
on 15 Jul 2011 at 4:37
Original issue reported on code.google.com by
mmura...@dieresys.com.ar
on 18 Mar 2010 at 7:23