org.python.core
public class BytecodeLoader extends Object
Method Summary | |
---|---|
static Class | makeClass(String name, Vector referents, byte[] data)
Turn the java byte code in data into a java class.
|
static PyCode | makeCode(String name, byte[] data)
Turn the java byte code for a compiled python module into a java class.
|
Parameters: name the name of the class referents a list of superclass and interfaces that the new class will reference. data the java byte code.
Parameters: name the name of the class data the java byte code.