|
From: Leo U. <leo...@ya...> - 2006-12-09 16:40:24
|
The answer is yes. The code is created by the
PythonInterpreter(in this case), by invoking
compile_flags on the org.python.core.Py instance. The
name is generated by this static method:
private static int nameindex=0;
public static synchronized String getName() {
String name =
"org.python.pycode._pyx"+nameindex;
nameindex += 1;
return name;
}
leouser
--- Leo User <leo...@ya...> wrote:
> Hi,
>
> Im peeking at stacks and noticed that there is some
> ugly looking class and method names on the stack
> from
> the package "org.python.pycode". Am I off that this
> is generated machinery(Im not seeing a pycode
> package
> anywhere)?
>
> leouser
>
>
>
>
____________________________________________________________________________________
> Want to start your own business?
> Learn how on Yahoo! Small Business.
> http://smallbusiness.yahoo.com/r-index
>
>
-------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get
> the chance to share your
> opinions on IT & business topics through brief
> surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Jython-dev mailing list
> Jyt...@li...
>
https://lists.sourceforge.net/lists/listinfo/jython-dev
>
____________________________________________________________________________________
Want to start your own business?
Learn how on Yahoo! Small Business.
http://smallbusiness.yahoo.com/r-index
|