From f477bfbc75318b30048b2e68f4d04348eac41105 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 20 Jan 2014 00:53:15 +0200 Subject: [PATCH] Pre-create sys module. --- py/runtime.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/py/runtime.c b/py/runtime.c index e0d76a517a..f5cea13f52 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -155,8 +155,11 @@ void rt_init(void) { #if MICROPY_CPYTHON_COMPAT // Add (empty) micropython module, so it was possible to "import micropython", // which can be a placeholder module on CPython. - mp_obj_t m = mp_obj_new_module(qstr_from_str_static("micropython")); - rt_store_name(qstr_from_str_static("micropython"), m); + mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython")); + rt_store_name(qstr_from_str_static("micropython"), m_mp); + + mp_obj_t m_sys = mp_obj_new_module(qstr_from_str_static("sys")); + rt_store_name(qstr_from_str_static("sys"), m_sys); #endif next_unique_code_id = 1; // 0 indicates "no code"