#include <string.h>
#include "py/obj.h"
#include "py/runtime.h"
Go to the source code of this file.
|
STATIC void | bound_meth_print (const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) |
|
mp_obj_t | mp_call_method_self_n_kw (mp_obj_t meth, mp_obj_t self, size_t n_args, size_t n_kw, const mp_obj_t *args) |
|
STATIC mp_obj_t | bound_meth_call (mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) |
|
mp_obj_t | mp_obj_new_bound_meth (mp_obj_t meth, mp_obj_t self) |
|
◆ mp_obj_bound_meth_t
◆ bound_meth_call()
◆ bound_meth_print()
◆ mp_call_method_self_n_kw()
◆ mp_obj_new_bound_meth()
◆ mp_type_bound_meth
Initial value:= {
.
name = MP_QSTR_bound_method,
}
STATIC void bound_meth_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind)
STATIC mp_obj_t bound_meth_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args)
const mp_obj_type_t mp_type_type
Definition at line 91 of file objboundmeth.c.