From a71c83a1d1aeca1d81d7c673929f8e836dec131e Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 15 Feb 2014 11:34:50 +0000 Subject: Change mp_obj_type_t.name from const char * to qstr. Ultimately all static strings should be qstr. This entry in the type structure is only used for printing error messages (to tell the type of the bad argument), and printing objects that don't supply a .print method. --- py/objboundmeth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/objboundmeth.c') diff --git a/py/objboundmeth.c b/py/objboundmeth.c index 500e61bd5..72fbc233f 100644 --- a/py/objboundmeth.c +++ b/py/objboundmeth.c @@ -41,7 +41,7 @@ mp_obj_t bound_meth_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj_ const mp_obj_type_t bound_meth_type = { { &mp_const_type }, - "bound_method", + .name = MP_QSTR_bound_method, .call = bound_meth_call, }; -- cgit v1.2.3