summaryrefslogtreecommitdiff
path: root/py/runtime.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-05-12 23:11:14 +0100
committerDamien George <damien.p.george@gmail.com>2014-05-12 23:11:14 +0100
commit915197a8f98d46c2e64edcec7c22de3effb92f0a (patch)
tree8dd094daf9ccdee341e2c863f4a317b8b0123f6a /py/runtime.c
parent97f9a2813e5909f0025a2e5e746fff2187f29171 (diff)
py: Remove emit_glue init and deinit. Needed only for debugging.
Debugging output for emit_glue now simplified so that the init and deinit functions are no longer needed.
Diffstat (limited to 'py/runtime.c')
-rw-r--r--py/runtime.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/py/runtime.c b/py/runtime.c
index 3cdbd2230..7c89ec4e2 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -77,8 +77,6 @@ void mp_init(void) {
// __debug__ enabled by default
mp_set_debug(true);
- mp_emit_glue_init();
-
// init global module stuff
mp_module_init();
@@ -93,7 +91,6 @@ void mp_init(void) {
void mp_deinit(void) {
//mp_obj_dict_free(&dict_main);
mp_module_deinit();
- mp_emit_glue_deinit();
// call port specific deinitialization if any
#ifdef MICROPY_PORT_INIT_FUNC