summaryrefslogtreecommitdiff
path: root/py/runtime.c
diff options
context:
space:
mode:
authorJohn R. Lenton <jlenton@gmail.com>2014-01-15 01:10:09 +0000
committerJohn R. Lenton <jlenton@gmail.com>2014-01-15 01:10:09 +0000
commit39b174e00a05dfaf4ac6f2e17cee4892a60e92c3 (patch)
tree9056691f927008e337ad8fd1814c7c4097625b0d /py/runtime.c
parentff8007c7d6497b108e8abe80ab3311945a03fe52 (diff)
Added map
Diffstat (limited to 'py/runtime.c')
-rw-r--r--py/runtime.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.c b/py/runtime.c
index a76af3db7..c5292dc26 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -111,6 +111,7 @@ void rt_init(void) {
#endif
mp_map_add_qstr(&map_builtins, MP_QSTR_int, (mp_obj_t)&int_type);
mp_map_add_qstr(&map_builtins, MP_QSTR_list, (mp_obj_t)&list_type);
+ mp_map_add_qstr(&map_builtins, MP_QSTR_map, (mp_obj_t)&map_type);
mp_map_add_qstr(&map_builtins, MP_QSTR_set, (mp_obj_t)&set_type);
mp_map_add_qstr(&map_builtins, MP_QSTR_tuple, (mp_obj_t)&tuple_type);
mp_map_add_qstr(&map_builtins, MP_QSTR_type, (mp_obj_t)&mp_const_type);