You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
import PyV8
class Global(PyV8.JSClass):
def __init__(self):
self.s = self
def write(self, val):
print val
with PyV8.JSContext(Global()) as ctx:
ctx.eval("""
write(String)
write(s.String)
""")
What is the expected output? What do you see instead?
Output is: None/Undefined
Should output: function String() { [native code] }
Original issue reported on code.google.com by [email protected] on 14 Feb 2011 at 4:00
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 14 Feb 2011 at 4:00The text was updated successfully, but these errors were encountered: