I've been trying to get pyv8run to execute a very simple test1.py script

def hello():
     return 2+3
print 'Hello World'

pyv8run test1.py works and prints 'Hello World'

But it seems to be compiling a lot of stuff unrelated to test1.py under 
output/lib
When I traced the dependencies, before it compiles test1.py it starts by 
tranlsating
builtins/pyjslib.py

This then depends on sys and dynamic.
pyjswidgets/dynamic depends on ['pyjamas.DOM', 'pyjamas', 'sys']
This then cascades into dependence on the rest of pyjamas.

>From what I can tell the content of dynamic.py has nothing needed to 
compile test1.py and seems specific to web/widgets
This also causes a reverse dependency from pyjstools to pyjswidgets which 
shouldn't be there.

What should I do about it?

Sarvi

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"Pyjs.org Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to