|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.python.core.PyObject
org.python.core.PyBuiltinFunction
org.python.core.PyBuiltinFunctionWide
| Nested Class Summary |
| Nested classes inherited from class org.python.core.PyBuiltinFunction |
PyBuiltinFunction.DefaultInfo, PyBuiltinFunction.Info |
| Nested classes inherited from class org.python.core.PyObject |
PyObject.ConversionException |
| Field Summary |
| Fields inherited from class org.python.core.PyBuiltinFunction |
exposed_name |
| Constructor Summary | |
PyBuiltinFunctionWide(PyBuiltinFunction.Info info)
|
|
| Method Summary | |
PyObject |
__call__(PyObject[] args)
A variant of the __call__ method when no keywords are passed. |
PyObject |
__call__(PyObject[] args,
java.lang.String[] keywords)
The basic method to override when implementing a callable object. |
PyObject |
inst_call(PyObject self)
|
PyObject |
inst_call(PyObject self,
PyObject arg0)
|
abstract PyObject |
inst_call(PyObject self,
PyObject[] args)
|
PyObject |
inst_call(PyObject self,
PyObject[] args,
java.lang.String[] keywords)
|
PyObject |
inst_call(PyObject self,
PyObject arg0,
PyObject arg1)
|
PyObject |
inst_call(PyObject self,
PyObject arg0,
PyObject arg1,
PyObject arg2)
|
PyObject |
inst_call(PyObject self,
PyObject arg0,
PyObject arg1,
PyObject arg2,
PyObject arg3)
|
| Methods inherited from class org.python.core.PyBuiltinFunction |
fastGetDoc, fastGetName, getSelf, setInfo, toString, typeSetup |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public PyBuiltinFunctionWide(PyBuiltinFunction.Info info)
| Method Detail |
public PyObject inst_call(PyObject self)
inst_call in class PyBuiltinFunction
public PyObject inst_call(PyObject self,
PyObject arg0)
inst_call in class PyBuiltinFunction
public PyObject inst_call(PyObject self,
PyObject arg0,
PyObject arg1)
inst_call in class PyBuiltinFunction
public PyObject inst_call(PyObject self,
PyObject arg0,
PyObject arg1,
PyObject arg2)
inst_call in class PyBuiltinFunction
public PyObject inst_call(PyObject self,
PyObject arg0,
PyObject arg1,
PyObject arg2,
PyObject arg3)
inst_call in class PyBuiltinFunction
public PyObject inst_call(PyObject self,
PyObject[] args,
java.lang.String[] keywords)
inst_call in class PyBuiltinFunction
public abstract PyObject inst_call(PyObject self,
PyObject[] args)
inst_call in class PyBuiltinFunction
public PyObject __call__(PyObject[] args,
java.lang.String[] keywords)
PyObject
__call__ in class PyObjectargs - all arguments to the function (including
keyword arguments).keywords - the keywords used for all keyword arguments.public PyObject __call__(PyObject[] args)
PyObject__call__(args, keywords)
with the appropriate arguments. The only reason to override this
function would be for improved performance.
__call__ in class PyObjectargs - all arguments to the function.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||