Re: [Jython-dev] Re: [Jython-users] Jython compilation
by Jeff Emanuel other posts by this author
Dec 5 2004 8:38PM messages near this date
Re: [Jython-dev] Getting modules rlcompleter,
readline from CPython to work
|
[Jython-dev] Re: [Jython-users] Auto getter/setter generation?
jython, the interpreter, interprets by compiling Python code directly to
Java byte code
and then executing the byte code. The granularity of code compiled depends
on how the interpreter is used. You can pass it an entire source file
to be compiled
and run at once; or, in interactive mode, it works line-by-line. You
can also
compile code and repeatedly execute it without requiring recompiling.
jythonc, the static compiler, does produce an intermediate Java source
file. I believe
that someone has (or had) a goal of making both jythonc and jython work
the same.
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
Jython-dev mailing list
Jython-dev@[...].net
https://lists.sourceforge.net/lists/listinfo/jython-dev
|