diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-12 23:02:19 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-12 23:02:19 +0000 |
commit | 099a9cb575b254dd9e00fd1c60859aec7299deb7 (patch) | |
tree | 9e5fd851076515e760ad84439c9360ee9410722b /py/obj.h | |
parent | 780ba22bb8d4451761952a5401cb15935c8eb4fb (diff) |
Remove mp_obj_new_exception_msg_1_arg and _2_arg.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -215,8 +215,6 @@ mp_obj_t mp_obj_new_complex(mp_float_t real, mp_float_t imag); #endif mp_obj_t mp_obj_new_exception(qstr id); mp_obj_t mp_obj_new_exception_msg(qstr id, const char *msg); -mp_obj_t mp_obj_new_exception_msg_1_arg(qstr id, const char *fmt, const char *a1); -mp_obj_t mp_obj_new_exception_msg_2_args(qstr id, const char *fmt, const char *a1, const char *a2); mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...); // counts args by number of % symbols in fmt, excluding %%; can only handle void* sizes (ie no float/double!) mp_obj_t mp_obj_new_range(int start, int stop, int step); mp_obj_t mp_obj_new_range_iterator(int cur, int stop, int step); |