Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
f477bfbc
Commit
f477bfbc
authored
Jan 20, 2014
by
Paul Sokolovsky
Browse files
Pre-create sys module.
parent
bb33cc66
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/runtime.c
View file @
f477bfbc
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment