diff options
Diffstat (limited to 'py/modsys.c')
-rw-r--r-- | py/modsys.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/modsys.c b/py/modsys.c index 1cfc09ecfb..ddc732e005 100644 --- a/py/modsys.c +++ b/py/modsys.c @@ -294,6 +294,9 @@ const mp_obj_module_t mp_module_sys = { .globals = (mp_obj_dict_t *)&mp_module_sys_globals, }; +// Unlike the other CPython-compatible modules, sys is not extensible from the +// filesystem. We rely on it to work so that things like sys.path are always +// available. MP_REGISTER_MODULE(MP_QSTR_sys, mp_module_sys); // If MICROPY_PY_SYS_PATH_ARGV_DEFAULTS is not enabled then these two lists |