| java.lang.Object org.python.core.BytecodeLoader
BytecodeLoader | public class BytecodeLoader (Code) | | Utility class for loading of compiled python modules and java classes defined
in python modules.
|
makeClass | public static Class makeClass(String name, Vector referents, byte[] data)(Code) | | Turn the java byte code in data into a java class.
Parameters: name - the name of the class Parameters: referents - a list of superclass and interfaces that the new classwill reference. Parameters: data - the java byte code. |
makeCode | public static PyCode makeCode(String name, byte[] data, String filename)(Code) | | Turn the java byte code for a compiled python module into a java class.
Parameters: name - the name of the class Parameters: data - the java byte code. |
|
|