py/compile: Only show raw code that is bytecode.

Signed-off-by: Damien George <damien@micropython.org>
pull/8462/head
Damien George 2022-03-29 22:37:58 +11:00
rodzic 594c753c27
commit df9a412206
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -3636,7 +3636,9 @@ mp_compiled_module_t mp_compile_to_raw_code(mp_parse_tree_t *parse_tree, qstr so
if (mp_verbose_flag >= 2) {
for (scope_t *s = comp->scope_head; s != NULL; s = s->next) {
mp_raw_code_t *rc = s->raw_code;
mp_bytecode_print(&mp_plat_print, rc, &cm.context->constants);
if (rc->kind == MP_CODE_BYTECODE) {
mp_bytecode_print(&mp_plat_print, rc, &cm.context->constants);
}
}
}
#endif