Top Fields Constructors Methods
org.python.core

pack-priv Class PySystemStateFunctions

Located in compilation unit of org.python.core.PySystemState.

extends PyBuiltinFunctionSet
Class Inheritance
Annotations
@Untraversable

Field Summary

Inherited from org.python.core.PyBuiltinFunctionSet:
index

Constructor Summary

AccessConstructor and Description
pack-priv
PySystemStateFunctions(String name, int index, int minargs, int maxargs)

Method Summary

Modifier and TypeMethod and Description
public PyObject
__call__(PyObject
the single argument to the function.
arg
)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with one argument.

public PyObject
__call__(PyObject
the first argument to the function.
arg1
,
PyObject
the second argument to the function.
arg2
,
PyObject
the third argument to the function.
arg3
)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with three arguments.

Constructor Detail

PySystemStateFunctionsback to summary
pack-priv PySystemStateFunctions(String name, int index, int minargs, int maxargs)

Method Detail

__call__back to summary
public PyObject __call__(PyObject arg)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

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
arg:PyObject

the single argument to the function.

Annotations
@Override
__call__back to summary
public PyObject __call__(PyObject arg1, PyObject arg2, PyObject arg3)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

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
arg1:PyObject

the first argument to the function.

arg2:PyObject

the second argument to the function.

arg3:PyObject

the third argument to the function.

Annotations
@Override