We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abc1959 commit 30d8a82Copy full SHA for 30d8a82
1 file changed
py/objcomplex.c
@@ -48,8 +48,6 @@ typedef struct _mp_obj_complex_t {
48
mp_float_t imag;
49
} mp_obj_complex_t;
50
51
-mp_obj_t mp_obj_new_complex(mp_float_t real, mp_float_t imag);
52
-
53
STATIC void complex_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind) {
54
mp_obj_complex_t *o = o_in;
55
#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
0 commit comments