2013-12-21 13:17:45 -05:00
|
|
|
// TODO convert all these to objects using MP_DECLARE and MP_DEFINE
|
|
|
|
|
|
|
|
mp_obj_t mp_builtin___build_class__(mp_obj_t o_class_fun, mp_obj_t o_class_name);
|
|
|
|
mp_obj_t mp_builtin___import__(int n, mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin___repl_print__(mp_obj_t o);
|
|
|
|
mp_obj_t mp_builtin_abs(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_all(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_any(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_bool(int n_args, const mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin_callable(mp_obj_t o_in);
|
2014-01-01 12:03:35 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_complex_obj);
|
|
|
|
#endif
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_t mp_builtin_chr(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_dict(void);
|
|
|
|
mp_obj_t mp_builtin_divmod(mp_obj_t o1_in, mp_obj_t o2_in);
|
2014-01-01 12:03:35 -05:00
|
|
|
#if MICROPY_ENABLE_FLOAT
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_float_obj);
|
|
|
|
#endif
|
2013-12-21 13:17:45 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_hash_obj);
|
2014-01-01 12:03:35 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_int_obj);
|
2013-12-21 13:17:45 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_iter_obj);
|
|
|
|
mp_obj_t mp_builtin_len(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_list(int n_args, const mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin_max(int n_args, const mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin_min(int n_args, const mp_obj_t *args);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_next_obj);
|
|
|
|
mp_obj_t mp_builtin_ord(mp_obj_t o_in);
|
|
|
|
mp_obj_t mp_builtin_pow(int n_args, const mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin_print(int n_args, const mp_obj_t *args);
|
|
|
|
mp_obj_t mp_builtin_range(int n_args, const mp_obj_t *args);
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_set_obj);
|
|
|
|
mp_obj_t mp_builtin_sum(int n_args, const mp_obj_t *args);
|
2014-01-02 11:01:17 -05:00
|
|
|
MP_DECLARE_CONST_FUN_OBJ(mp_builtin_type_obj);
|