@@ -342,7 +342,7 @@ mp_float_t mp_obj_get_float(mp_obj_t arg) {
342
342
mp_float_t val ;
343
343
344
344
if (!mp_obj_get_float_maybe (arg , & val )) {
345
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
345
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
346
346
mp_raise_TypeError (MP_ERROR_TEXT ("can't convert to float" ));
347
347
#else
348
348
mp_raise_msg_varg (& mp_type_TypeError ,
@@ -382,7 +382,7 @@ bool mp_obj_get_complex_maybe(mp_obj_t arg, mp_float_t *real, mp_float_t *imag)
382
382
383
383
void mp_obj_get_complex (mp_obj_t arg , mp_float_t * real , mp_float_t * imag ) {
384
384
if (!mp_obj_get_complex_maybe (arg , real , imag )) {
385
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
385
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
386
386
mp_raise_TypeError (MP_ERROR_TEXT ("can't convert to complex" ));
387
387
#else
388
388
mp_raise_msg_varg (& mp_type_TypeError ,
@@ -400,7 +400,7 @@ void mp_obj_get_array(mp_obj_t o, size_t *len, mp_obj_t **items) {
400
400
} else if (mp_obj_is_type (o , & mp_type_list )) {
401
401
mp_obj_list_get (o , len , items );
402
402
} else {
403
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
403
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
404
404
mp_raise_TypeError (MP_ERROR_TEXT ("expected tuple/list" ));
405
405
#else
406
406
mp_raise_msg_varg (& mp_type_TypeError ,
@@ -414,7 +414,7 @@ void mp_obj_get_array_fixed_n(mp_obj_t o, size_t len, mp_obj_t **items) {
414
414
size_t seq_len ;
415
415
mp_obj_get_array (o , & seq_len , items );
416
416
if (seq_len != len ) {
417
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
417
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
418
418
mp_raise_ValueError (MP_ERROR_TEXT ("tuple/list has wrong length" ));
419
419
#else
420
420
mp_raise_msg_varg (& mp_type_ValueError ,
@@ -429,7 +429,7 @@ size_t mp_get_index(const mp_obj_type_t *type, size_t len, mp_obj_t index, bool
429
429
if (mp_obj_is_small_int (index )) {
430
430
i = MP_OBJ_SMALL_INT_VALUE (index );
431
431
} else if (!mp_obj_get_int_maybe (index , & i )) {
432
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
432
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
433
433
mp_raise_TypeError (MP_ERROR_TEXT ("indices must be integers" ));
434
434
#else
435
435
mp_raise_msg_varg (& mp_type_TypeError ,
@@ -449,7 +449,7 @@ size_t mp_get_index(const mp_obj_type_t *type, size_t len, mp_obj_t index, bool
449
449
}
450
450
} else {
451
451
if (i < 0 || (mp_uint_t )i >= len ) {
452
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
452
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
453
453
mp_raise_msg (& mp_type_IndexError , MP_ERROR_TEXT ("index out of range" ));
454
454
#else
455
455
mp_raise_msg_varg (& mp_type_IndexError , MP_ERROR_TEXT ("%q index out of range" ), type -> name );
@@ -483,7 +483,7 @@ mp_obj_t mp_obj_id(mp_obj_t o_in) {
483
483
mp_obj_t mp_obj_len (mp_obj_t o_in ) {
484
484
mp_obj_t len = mp_obj_len_maybe (o_in );
485
485
if (len == MP_OBJ_NULL ) {
486
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
486
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
487
487
mp_raise_TypeError (MP_ERROR_TEXT ("object has no len" ));
488
488
#else
489
489
mp_raise_msg_varg (& mp_type_TypeError ,
@@ -524,21 +524,21 @@ mp_obj_t mp_obj_subscr(mp_obj_t base, mp_obj_t index, mp_obj_t value) {
524
524
// TODO: call base classes here?
525
525
}
526
526
if (value == MP_OBJ_NULL ) {
527
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
527
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
528
528
mp_raise_TypeError (MP_ERROR_TEXT ("object doesn't support item deletion" ));
529
529
#else
530
530
mp_raise_msg_varg (& mp_type_TypeError ,
531
531
MP_ERROR_TEXT ("'%s' object doesn't support item deletion" ), mp_obj_get_type_str (base ));
532
532
#endif
533
533
} else if (value == MP_OBJ_SENTINEL ) {
534
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
534
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
535
535
mp_raise_TypeError (MP_ERROR_TEXT ("object isn't subscriptable" ));
536
536
#else
537
537
mp_raise_msg_varg (& mp_type_TypeError ,
538
538
MP_ERROR_TEXT ("'%s' object isn't subscriptable" ), mp_obj_get_type_str (base ));
539
539
#endif
540
540
} else {
541
- #if MICROPY_ERROR_REPORTING = = MICROPY_ERROR_REPORTING_TERSE
541
+ #if MICROPY_ERROR_REPORTING < = MICROPY_ERROR_REPORTING_TERSE
542
542
mp_raise_TypeError (MP_ERROR_TEXT ("object doesn't support item assignment" ));
543
543
#else
544
544
mp_raise_msg_varg (& mp_type_TypeError ,
0 commit comments