| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectorg.python.core.PyObjectorg.python.core.PyBuiltinFunctionorg.python.core.PyBuiltinFunctionNarrowpublic abstract class PyBuiltinFunctionNarrowextends PyBuiltinFunctionNested Class Summary |
Nested classes/interfaces inherited from class org.python.core.PyBuiltinFunction | |
PyBuiltinFunction.DefaultInfo, PyBuiltinFunction.Info | |
Nested classes/interfaces inherited from class org.python.core.PyObject | |
PyObject.ConversionException | |
Field Summary | |
static Class | |
Fields inherited from class org.python.core.PyBuiltinFunction | |
exposed_name | |
Fields inherited from class org.python.core.PyObject | |
exposed_name | |
Constructor Summary | |
Method Summary | |
PyObject |
|
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
PyObject | |
Methods inherited from class org.python.core.PyBuiltinFunction | |
fastGetDoc, fastGetName, getSelf, inst_call, inst_call, inst_call, inst_call, inst_call, inst_call, inst_call, makeCall, setInfo, toString, typeSetup | |
public PyObject __call__()
A variant of the __call__ method with no arguments. The default behavior is to invoke__call__(args, keywords)with the appropriate arguments. The only reason to override this function would be for improved performance.
public PyObject __call__(PyObject arg0)
A variant of the __call__ method with one argument. The default behavior is to invoke__call__(args, keywords)with the appropriate arguments. The only reason to override this function would be for improved performance.
- Parameters:
arg0- the single argument to the function.
public PyObject __call__(PyObject arg0, PyObject arg1)
A variant of the __call__ method with two arguments. The default behavior is to invoke__call__(args, keywords)with the appropriate arguments. The only reason to override this function would be for improved performance.
- Parameters:
arg0- the first argument to the function.arg1- the second argument to the function.
public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2)
A variant of the __call__ method with three arguments. The default behavior is to invoke__call__(args, keywords)with the appropriate arguments. The only reason to override this function would be for improved performance.
- Parameters:
arg0- the first argument to the function.arg1- the second argument to the function.arg2- the third argument to the function.
public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2, PyObject arg3)
A variant of the __call__ method with four arguments. The default behavior is to invoke__call__(args, keywords)with the appropriate arguments. The only reason to override this function would be for improved performance.
- Parameters:
arg0- the first argument to the function.arg1- the second argument to the function.arg2- the third argument to the function.arg3- the fourth argument to the function.
public PyObject inst_call(PyObject self, PyObject arg0)
- Overrides:
- inst_call in interface PyBuiltinFunction
public PyObject inst_call(PyObject self, PyObject arg0, PyObject arg1)
- Overrides:
- inst_call in interface PyBuiltinFunction
public PyObject inst_call(PyObject self, PyObject arg0, PyObject arg1, PyObject arg2)
- Overrides:
- inst_call in interface PyBuiltinFunction
public PyObject inst_call(PyObject self, PyObject arg0, PyObject arg1, PyObject arg2, PyObject arg3)
- Overrides:
- inst_call in interface PyBuiltinFunction
public PyObject inst_call(PyObject self, PyObject[] args)
- Overrides:
- inst_call in interface PyBuiltinFunction
public PyObject inst_call(PyObject self, PyObject[] args, String[] keywords)
- Overrides:
- inst_call in interface PyBuiltinFunction