summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-02-14 00:22:06 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-02-14 00:30:36 +0200
commitda1ce93da8aaa2ae050610ec51fdb3e72988a589 (patch)
tree942683bc38d2c8cb9b945a0a7291079cfccac71c /py/runtime.h
parenta8d404e0e1cfc3ad1fb171b5515f2685af4ffeca (diff)
downloadmicropython-da1ce93da8aaa2ae050610ec51fdb3e72988a589.tar.gz
micropython-da1ce93da8aaa2ae050610ec51fdb3e72988a589.zip
Implement "from module import *" construct.
Diffstat (limited to 'py/runtime.h')
-rw-r--r--py/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h
index 20595c6a58..f5a9f2abc7 100644
--- a/py/runtime.h
+++ b/py/runtime.h
@@ -39,6 +39,7 @@ mp_obj_t rt_getiter(mp_obj_t o);
mp_obj_t rt_iternext(mp_obj_t o);
mp_obj_t rt_import_name(qstr name, mp_obj_t fromlist, mp_obj_t level);
mp_obj_t rt_import_from(mp_obj_t module, qstr name);
+void rt_import_all(mp_obj_t module);
struct _mp_map_t;
struct _mp_map_t *rt_locals_get(void);