ironm73 / pyv8

Automatically exported from code.google.com/p/pyv8
0 stars 0 forks source link

Segmentation fault on JSArray iteration #145

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Easy to reproduce:

import PyV8
ctxt = PyV8.JSContext()
ctxt.enter()
a=PyV8.JSArray([1,2,3])
[x for x in a]
Segmentation fault

Is it possible to iterate on JSArray?

Original issue reported on code.google.com by ishalya...@gmail.com on 26 Dec 2012 at 6:31

GoogleCodeExporter commented 8 years ago
which pyv8 and v8 version that your are using?

Original comment by flier...@gmail.com on 26 Dec 2012 at 7:27

GoogleCodeExporter commented 8 years ago
We are using the following versions:

pyv8 1.0-svn458  + v8 -r13261

pyv8 1.0-svn450 + v8 -r12923

Original comment by ishalya...@gmail.com on 26 Dec 2012 at 8:01

GoogleCodeExporter commented 8 years ago
Lazy construct object was used before initial it, please verify with SVN trunk 
code after r460

Original comment by flier...@gmail.com on 31 Dec 2012 at 3:53