Procs
proc callMethod(self: PyObject; name: PyStrObject): PyObject {....raises: [], tags: [RootEffect], forbids: [].}
- PyObject_CallMethodNoArg Source Edit
proc callMethod(self: PyObject; name: PyStrObject; arg: PyObject): PyObject {. ...raises: [], tags: [RootEffect], forbids: [].}
- PyObject_CallMethodOneArg Source Edit
proc callMethodArgs(self: PyObject; name: PyStrObject; args: varargs[PyObject]): PyObject {. ...raises: [], tags: [RootEffect], forbids: [].}
- PyObject_CallMethodObjArgs Source Edit