diff options
author | bvernoux <bvernoux@gmail.com> | 2014-06-03 19:26:34 +0200 |
---|---|---|
committer | bvernoux <bvernoux@gmail.com> | 2014-06-03 19:26:34 +0200 |
commit | 82560fce75ab0307182c943d564202e55fca6c09 (patch) | |
tree | d20162c8647ddb2451fdb76024761821b43149e8 /py/runtime.h | |
parent | 0a1dbfe02f4a693c202b97aafcf0b5d0ba050812 (diff) | |
parent | b294a7e3c9b84aad6c331128a51e0d69e7845141 (diff) | |
download | micropython-82560fce75ab0307182c943d564202e55fca6c09.tar.gz micropython-82560fce75ab0307182c943d564202e55fca6c09.zip |
Merge branch 'master' of https://github.com/micropython/micropython
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/runtime.h b/py/runtime.h index 3c79b48ed0..dbd413180b 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -54,8 +54,6 @@ typedef struct _mp_arg_t { void mp_init(void); void mp_deinit(void); -void mp_set_debug(bool value); // sets the value of __debug__; see lexer.c - void mp_arg_check_num(uint n_args, uint n_kw, uint n_args_min, uint n_args_max, bool takes_kw); void mp_arg_parse_all(uint n_pos, const mp_obj_t *pos, mp_map_t *kws, uint n_allowed, const mp_arg_t *allowed, mp_arg_val_t *out_vals); void mp_arg_parse_all_kw_array(uint n_pos, uint n_kw, const mp_obj_t *args, uint n_allowed, const mp_arg_t *allowed, mp_arg_val_t *out_vals); |