commit | 9de91914fb7520bd946b87b1832a002c5725f7e8 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Fri Jan 20 10:21:30 2017 +1100 |
committer | Damien George <damien.p.george@gmail.com> | Sun Jan 22 11:59:29 2017 +1100 |
tree | 20fe5faa547695699f57863f6c26a60329a72a68 | |
parent | 1864f90e9a2c0cc12e91c88ddd491b809c5317e5 [diff] [blame] |
py: Move weak-link map to objmodule.c, and expose module maps as public.
diff --git a/py/objmodule.h b/py/objmodule.h index 138f942..937ff84 100644 --- a/py/objmodule.h +++ b/py/objmodule.h
@@ -28,6 +28,9 @@ #include "py/obj.h" +extern const mp_map_t mp_builtin_module_map; +extern const mp_map_t mp_builtin_module_weak_links_map; + void mp_module_init(void); void mp_module_deinit(void); mp_obj_t mp_module_get(qstr module_name);