Hi mcot,
Could you give me some hints and examples to reproduce it? I can't
reproduce it on Windows and Ubuntu x64 with following scene.
Thanks
import PyV8
__author__ = 'Flier Lu'
class Global(PyV8.JSClass):
def write(self, val):
print val
with PyV8.JSContext(Global()) as ctxt:
ctxt.eval("""
var obj = this;
write(obj);
write(obj);
write(obj);
write(obj);
write(obj);
write(obj);
write(obj);
write(obj);
""")
for i in range(10):
ctxt.eval("write(obj);")