Arushit Mudgal

Results 16 comments of Arushit Mudgal

@vigneshram93 @vmnguyen @PiyushGoyal443 Working on it?

Please not that this code worked fine with PyV8. I will look into `__setitem__` in the morning and revert. Thanks for the quick reply :) Do let me know if...

@tbodt Also, [_document](https://github.com/kira0204/thug/blob/c30dd33222ba9424fb306eb40f69d45fcbf67993/thug/DOM/Window.py#L243-L245) property is not being recognised by v8py, whereas [navigator](https://github.com/kira0204/thug/blob/c30dd33222ba9424fb306eb40f69d45fcbf67993/thug/DOM/Window.py#L285-L288) works fine. This is really strange

When I removed the starting underscore from the name, it gave me this error. Please note that `window.navigator` is modified to return an object of this class: https://github.com/kira0204/thug/blob/0803b4882dce8633434dd59c280c22aef3629f14/thug/DOM/W3C/Core/DOMImplementation.py#L14 ``` $...

I think this would be the minimum repro case: ``` class Foo: def __init__(self): self.html_object = bs4.BeautifulSoup("foo.bar") context = v8py.Context(self) context.eval("a = foo.bar") @property def bar(self): return self.html_object @property def...

Sure, Thank you.

Hi, curious to know whether there is any progress on this issue. Thank you

Sure thanks, will do so

Also, the built of `v8` is done with the command `python2`. The problem I am facing right now is that the CentOS5 docker image has Python2.4 as `python2`, and `depot_tools`...

Update: I had to include python2.7 in the path so that python2 resolved to `python2.7.4` in this case. The other issue being raised is [here](https://travis-ci.org/kira0204/v8py/jobs/377170766#L587), the tar version in CentOS...