summaryrefslogtreecommitdiff
path: root/py/builtinimport.c
diff options
context:
space:
mode:
authorDavid Grayson <davidegrayson@gmail.com>2023-06-04 19:55:41 -0700
committerDamien George <damien@micropython.org>2023-06-05 23:21:52 +1000
commita79a6ab3641e3536e509278706e7ac4de01a8126 (patch)
treee20ba42bc83875143e06ac36bcffd84e4ad568e7 /py/builtinimport.c
parentce31e5a2dc0736ebc7976098f1fdf520b2c32892 (diff)
py/builtinimport: Remove partially-loaded modules from sys.modules.
Prior to this commit, importing a module that exists but has a syntax error or some other problem that happens at import time would result in a potentially-incomplete module object getting added to sys.modules. Subsequent imports would use that object, resulting in confusing error messages that hide the root cause of the problem. This commit fixes that issue by removing the failed module from sys.modules using the new NLR callback mechanism. Note that it is still important to add the module to sys.modules while the import is happening so that we can support circular imports just like CPython does. Fixes issue #967. Signed-off-by: David Grayson <davidegrayson@gmail.com>
Diffstat (limited to 'py/builtinimport.c')
-rw-r--r--py/builtinimport.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c
index de4ea17f3..8827be612 100644
--- a/py/builtinimport.c
+++ b/py/builtinimport.c
@@ -346,6 +346,17 @@ STATIC void evaluate_relative_import(mp_int_t level, const char **module_name, s
*module_name_len = new_module_name_len;
}
+typedef struct _nlr_jump_callback_node_unregister_module_t {
+ nlr_jump_callback_node_t callback;
+ qstr name;
+} nlr_jump_callback_node_unregister_module_t;
+
+STATIC void unregister_module_from_nlr_jump_callback(void *ctx_in) {
+ nlr_jump_callback_node_unregister_module_t *ctx = ctx_in;
+ mp_map_t *mp_loaded_modules_map = &MP_STATE_VM(mp_loaded_modules_dict).map;
+ mp_map_lookup(mp_loaded_modules_map, MP_OBJ_NEW_QSTR(ctx->name), MP_MAP_LOOKUP_REMOVE_IF_FOUND);
+}
+
// Load a module at the specified absolute path, possibly as a submodule of the given outer module.
// full_mod_name: The full absolute path up to this level (e.g. "foo.bar.baz").
// level_mod_name: The final component of the path (e.g. "baz").
@@ -467,8 +478,13 @@ STATIC mp_obj_t process_import_at_level(qstr full_mod_name, qstr level_mod_name,
// Module was found on the filesystem/frozen, try and load it.
DEBUG_printf("Found path to load: %.*s\n", (int)vstr_len(&path), vstr_str(&path));
- // Prepare for loading from the filesystem. Create a new shell module.
+ // Prepare for loading from the filesystem. Create a new shell module
+ // and register it in sys.modules. Also make sure we remove it if
+ // there is any problem below.
module_obj = mp_obj_new_module(full_mod_name);
+ nlr_jump_callback_node_unregister_module_t ctx;
+ ctx.name = full_mod_name;
+ nlr_push_jump_callback(&ctx.callback, unregister_module_from_nlr_jump_callback);
#if MICROPY_MODULE_OVERRIDE_MAIN_IMPORT
// If this module is being loaded via -m on unix, then
@@ -526,6 +542,8 @@ STATIC mp_obj_t process_import_at_level(qstr full_mod_name, qstr level_mod_name,
mp_store_attr(outer_module_obj, level_mod_name, module_obj);
}
+ nlr_pop_jump_callback(false);
+
return module_obj;
}