Skip to content

Commit acf4b1b

Browse files
committed
Remove reverse methods from per-board defs
1 parent 9eb85a5 commit acf4b1b

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

ports/atmel-samd/boards/circuitplayground_express_crickit/mpconfigboard.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
// Increase stack size slightly due to CPX library import nesting
3333
#define CIRCUITPY_DEFAULT_STACK_SIZE (4760) // divisible by 8
3434

35-
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
36-
3735
#define DEFAULT_I2C_BUS_SCL (&pin_PB03)
3836
#define DEFAULT_I2C_BUS_SDA (&pin_PB02)
3937

ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
#define CALIBRATE_CRYSTALLESS 1
2020

21-
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
22-
2321
#define DEFAULT_I2C_BUS_SCL (&pin_PA09)
2422
#define DEFAULT_I2C_BUS_SDA (&pin_PA08)
2523

ports/atmel-samd/mpconfigport.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
#define MICROPY_PY_FUNCTION_ATTRS (0)
4848
// MICROPY_PY_UJSON depends on MICROPY_PY_IO
4949
#define MICROPY_PY_IO (0)
50+
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
5051
#define MICROPY_PY_UJSON (0)
5152
#define MICROPY_PY_UERRNO_LIST \
5253
X(EPERM) \

py/circuitpy_mpconfig.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ extern const struct _mp_obj_module_t ustack_module;
623623
#else
624624
#define ULAB_MODULE
625625
#endif
626+
626627
#if MICROPY_PY_URE
627628
#define RE_MODULE { MP_ROM_QSTR(MP_QSTR_re), MP_ROM_PTR(&mp_module_ure) },
628629
#else

0 commit comments

Comments
 (0)