diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-05-10 10:36:38 +0100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-05-10 10:36:38 +0100 |
| commit | 3417bc2f25c492f7551e35d14349d85a45122b43 (patch) | |
| tree | 550e4a6b5350cedd8b89ee476f53d943712c7453 /py/emitglue.h | |
| parent | 6e8085b425a9d02ac3e204651e2c9d8de9a23a85 (diff) | |
py: Rename byte_code to bytecode everywhere.
bytecode is the more widely used. See issue #590.
Diffstat (limited to 'py/emitglue.h')
| -rw-r--r-- | py/emitglue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitglue.h b/py/emitglue.h index 9d7d2993b..bf1a44051 100644 --- a/py/emitglue.h +++ b/py/emitglue.h @@ -59,7 +59,7 @@ void mp_emit_glue_deinit(void); mp_raw_code_t *mp_emit_glue_new_raw_code(void); -void mp_emit_glue_assign_byte_code(mp_raw_code_t *rc, byte *code, uint len, uint n_pos_args, uint n_kwonly_args, qstr *arg_names, uint scope_flags); +void mp_emit_glue_assign_bytecode(mp_raw_code_t *rc, byte *code, uint len, uint n_pos_args, uint n_kwonly_args, qstr *arg_names, uint scope_flags); void mp_emit_glue_assign_native_code(mp_raw_code_t *rc, void *f, uint len, int n_args); void mp_emit_glue_assign_inline_asm_code(mp_raw_code_t *rc, void *f, uint len, int n_args); |
