Package jep.python
Interface PyBuiltins
public interface PyBuiltins
Interface for accessing some of the functions of the Python builtins module from Java.
More information on specific functions can be found in the
Python Documentation
To use this interface create an Interpreter and call get(Interpreter).
PyBuiltins are not thread safe and have the same thread related restrictions as PyObject.
- Since:
- 4.2
-
Method Summary
Modifier and TypeMethodDescriptionbooleanvoiddict()String[]voidvoidstatic PyBuiltinsget(Interpreter interpreter) booleanlongbooleanisinstance(PyObject object, PyObject classinfo) booleanissubclass(PyObject cls, PyObject classinfo) list()object()set()voidtuple()
-
Method Details