Package org.python.modules
Class _py_compile
- java.lang.Object
-
- org.python.modules._py_compile
-
public class _py_compile extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description _py_compile()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
compile(PyString fileName, PyString compiledName, PyString displayName)
Java wrapper on the module compiler in support of of py_compile.compile.static java.lang.String
getModuleName(java.io.File f)
-
-
-
Field Detail
-
__all__
public static PyList __all__
-
-
Method Detail
-
compile
public static boolean compile(PyString fileName, PyString compiledName, PyString displayName)
Java wrapper on the module compiler in support of of py_compile.compile. Filenames here will be interpreted as Unicode if they are PyUnicode, and as byte-encoded names if they only PyString.- Parameters:
fileName
- actual source file namecompiledName
- compiled filenamedisplayName
- displayed source filename, only used for error messages (and not resolved)- Returns:
- true if successful
-
getModuleName
public static final java.lang.String getModuleName(java.io.File f)
-
-