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.
This commit is contained in:
Damien George
2014-05-12 23:11:14 +01:00
parent 97f9a2813e
commit 915197a8f9
3 changed files with 3 additions and 28 deletions

View File

@@ -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