Message2

Author bckfnn
Recipients
Date 2000-11-12.18:35:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
eval() and execfile() uses a new classloader for each invocation, and this classloader is kept around. So this should already work under most JVMs. It works for me.

Rather than having jython caching the generated class, it is usually better to do your own caching of the compiled code object by using compile() to create the code-object and the exec statement to run the code.
History
Date User Action Args
2008-02-20 17:16:36adminlinkissue221738 messages
2008-02-20 17:16:36admincreate