| Access | Constructor and Description |
|---|---|
| protected | |
| protected | PyBuiltinMethodNarrow(String name, int numArgs)
Creates a method for the |
| protected | PyBuiltinMethodNarrow(String name, int minArgs, int maxArgs)
Creates a method for the given name that takes at least |
| protected | |
| protected |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __call__(PyObject[]
all arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. The basic method to override when implementing a callable object. |
| public PyObject | __call__(PyObject[]
all arguments to the function. args)Overrides org. A variant of the __call__ method when no keywords are passed. |
| public PyObject | __call__()
Overrides org. A variant of the __call__ method with no arguments. |
| public PyObject | __call__(PyObject
the single argument to the function. arg0)Overrides org. A variant of the __call__ method with one argument. |
| public PyObject | __call__(PyObject
the first argument to the function. arg0, PyObject the second argument to the function. arg1)Overrides org. A variant of the __call__ method with two arguments. |
| public PyObject | __call__(PyObject
the first argument to the function. arg0, PyObject the second argument to the function. arg1, PyObject the third argument to the function. arg2)Overrides org. A variant of the __call__ method with three arguments. |
| public PyObject | __call__(PyObject
the first argument to the function. arg0, PyObject the second argument to the function. arg1, PyObject the third argument to the function. arg2, PyObject the fourth argument to the function. arg3)Overrides org. A variant of the __call__ method with four arguments. |
| PyBuiltinMethodNarrow | back to summary |
|---|---|
| protected PyBuiltinMethodNarrow(String name) Creates a method for the given name that takes no arguments. | |
| PyBuiltinMethodNarrow | back to summary |
|---|---|
| protected PyBuiltinMethodNarrow(String name, int numArgs) Creates a method for the | |
| PyBuiltinMethodNarrow | back to summary |
|---|---|
| protected PyBuiltinMethodNarrow(String name, int minArgs, int maxArgs) Creates a method for the given name that takes at least | |
| PyBuiltinMethodNarrow | back to summary |
|---|---|
| protected PyBuiltinMethodNarrow(PyObject self, PyBuiltinCallable. | |
| PyBuiltinMethodNarrow | back to summary |
|---|---|
| protected PyBuiltinMethodNarrow(PyType type, PyObject self, PyBuiltinCallable. | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject[] args, String[] keywords) Overrides org. Doc from org. The basic method to override when implementing a callable object. The first len(args)-len(keywords) members of args[] are plain arguments. The last len(keywords) arguments are the values of the keyword arguments.
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject[] args) Overrides org. Doc from org. A variant of the __call__ method when no keywords are passed. The default behavior is to
invoke | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__() Overrides org. Doc from org. A variant of the __call__ method with no arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg0) Overrides org. Doc from org. A variant of the __call__ method with one argument. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg0, PyObject arg1) Overrides org. Doc from org. A variant of the __call__ method with two arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2) Overrides org. Doc from org. A variant of the __call__ method with three arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2, PyObject arg3) Overrides org. Doc from org. A variant of the __call__ method with four arguments. The default behavior is to invoke
| |