PydObject.unpack_call

Calls the PydObject with positional and keyword arguments.

  1. PydObject unpack_call(PydObject args = null)
  2. PydObject unpack_call(PydObject args, PydObject kw)
    class PydObject

Parameters

args
Type: PydObject

Positional arguments. Should be a tuple. Pass an empty tuple for no positional arguments.

kw
Type: PydObject

Keyword arguments. Should be a dict.

Return Value

Type: PydObject

Whatever this function object returns.

Meta