diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-12 22:35:37 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-12 22:35:37 +0100 |
commit | 96f137b24a6c0b2e1e3c6f5fb8617b8a7f7896d6 (patch) | |
tree | 5e9b6751ee1d8ec2585e7f6fbd8b4f66a8e2d35d /py/compile.c | |
parent | f42dbb98d10104df4d0db65c89e1788035ca6788 (diff) |
py: Rename BYTE_CODE to BYTECODE (this was missed in previous rename).
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c index 36ffa928e..cdd3a5b03 100644 --- a/py/compile.c +++ b/py/compile.c @@ -1147,7 +1147,7 @@ STATIC bool compile_built_in_decorator(compiler_t *comp, int name_len, mp_parse_ qstr attr = MP_PARSE_NODE_LEAF_ARG(name_nodes[1]); if (attr == MP_QSTR_bytecode) { - *emit_options = MP_EMIT_OPT_BYTE_CODE; + *emit_options = MP_EMIT_OPT_BYTECODE; #if MICROPY_EMIT_NATIVE } else if (attr == MP_QSTR_native) { *emit_options = MP_EMIT_OPT_NATIVE_PYTHON; |