summaryrefslogtreecommitdiffstatshomepage
path: root/py/objmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/objmodule.h')
-rw-r--r--py/objmodule.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/py/objmodule.h b/py/objmodule.h
index b7702ec50b..33a0ff07e1 100644
--- a/py/objmodule.h
+++ b/py/objmodule.h
@@ -3,7 +3,7 @@
*
* The MIT License (MIT)
*
- * Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2013-2019 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -34,6 +34,8 @@ extern const mp_map_t mp_builtin_module_weak_links_map;
mp_obj_t mp_module_get(qstr module_name);
void mp_module_register(qstr qstr, mp_obj_t module);
+mp_obj_t mp_module_search_umodule(const char *module_str);
+
#if MICROPY_MODULE_BUILTIN_INIT
void mp_module_call_init(qstr module_name, mp_obj_t module_obj);
#else