PydObject.method_unpack

Calls the PydObject method with args.

  1. PydObject method_unpack(string name, PydObject args = null)
    class PydObject
    method_unpack
    (
    string name
    ,
    PydObject args = null
    )
  2. PydObject method_unpack(string name, PydObject args, PydObject kw)

Parameters

name
Type: string

name of method to call

args
Type: PydObject

Should be a tuple of the arguments to pass. Omit to call with no arguments.

Return Value

Type: PydObject

Whatever this object's method returns.

Meta