File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -198,8 +198,6 @@ typedef long mp_off_t;
198
198
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
199
199
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (CIRCUITPY_FULL_BUILD)
200
200
#endif
201
- // Opposite setting is deliberate.
202
- #define MICROPY_PY_UERRNO_ERRORCODE (!CIRCUITPY_FULL_BUILD)
203
201
#define MICROPY_PY_URE_MATCH_GROUPS (CIRCUITPY_RE)
204
202
#define MICROPY_PY_URE_MATCH_SPAN_START_END (CIRCUITPY_RE)
205
203
#define MICROPY_PY_URE_SUB (CIRCUITPY_RE)
@@ -401,9 +399,12 @@ extern const struct _mp_obj_module_t terminalio_module;
401
399
402
400
#if CIRCUITPY_ERRNO
403
401
#define MICROPY_PY_UERRNO (1)
402
+ // Uses about 80 bytes.
403
+ #define MICROPY_PY_UERRNO_ERRORCODE (1)
404
404
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
405
405
#else
406
406
#define ERRNO_MODULE
407
+ #
407
408
#endif
408
409
409
410
#if CIRCUITPY_ESPIDF
You can’t perform that action at this time.
0 commit comments