diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-23 00:03:11 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-23 00:03:11 +0000 |
commit | badc9d4a953f9636983928feb16d33b71e01f975 (patch) | |
tree | 8f382ac62e2df9c99118a8242e3b00acd192532e /py/builtin.c | |
parent | 5e756c9860c39bb3555427f95888f7209eb3f1ec (diff) | |
download | micropython-badc9d4a953f9636983928feb16d33b71e01f975.tar.gz micropython-badc9d4a953f9636983928feb16d33b71e01f975.zip |
py: Improve dir(): extract names from type->methods table.
Diffstat (limited to 'py/builtin.c')
-rw-r--r-- | py/builtin.c | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/py/builtin.c b/py/builtin.c index 93e91072c4..42bb980f1f 100644 --- a/py/builtin.c +++ b/py/builtin.c @@ -151,7 +151,8 @@ MP_DEFINE_CONST_FUN_OBJ_1(mp_builtin_chr_obj, mp_builtin_chr); STATIC mp_obj_t mp_builtin_dir(uint n_args, const mp_obj_t *args) { // TODO make this function more general and less of a hack - mp_map_t *map; + mp_map_t *map = NULL; + const mp_method_t *meth = NULL; if (n_args == 0) { // make a list of names in the local name space map = rt_locals_get(); @@ -162,15 +163,23 @@ STATIC mp_obj_t mp_builtin_dir(uint n_args, const mp_obj_t *args) { map = mp_obj_module_get_globals(args[0]); } else if (type->locals_dict != MP_OBJ_NULL && MP_OBJ_IS_TYPE(type->locals_dict, &dict_type)) { map = mp_obj_dict_get_map(type->locals_dict); - } else { - return mp_obj_new_list(0, NULL); + } + if (type->methods != NULL) { + meth = type->methods; } } mp_obj_t dir = mp_obj_new_list(0, NULL); - for (uint i = 0; i < map->alloc; i++) { - if (map->table[i].key != MP_OBJ_NULL) { - mp_obj_list_append(dir, map->table[i].key); + if (map != NULL) { + for (uint i = 0; i < map->alloc; i++) { + if (map->table[i].key != MP_OBJ_NULL) { + mp_obj_list_append(dir, map->table[i].key); + } + } + } + if (meth != NULL) { + for (; meth->name != NULL; meth++) { + mp_obj_list_append(dir, MP_OBJ_NEW_QSTR(qstr_from_str(meth->name))); } } return dir; |