File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 67
67
#define MICROPY_USE_INTERNAL_ERRNO (1)
68
68
#define MICROPY_PY_FUNCTION_ATTRS (1)
69
69
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
70
+ #define MICROPY_PY_BUILTINS_STR_CENTER (1)
71
+ #define MICROPY_PY_BUILTINS_STR_PARTITION (1)
70
72
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (1)
71
73
#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
72
74
#define MICROPY_PY_BUILTINS_FROZENSET (1)
73
75
#define MICROPY_PY_BUILTINS_EXECFILE (1)
76
+ #define MICROPY_PY_BUILTINS_COMPILE (1)
74
77
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
75
78
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
76
79
#define MICROPY_PY_ARRAY_SLICE_ASSIGN (1)
@@ -177,6 +180,7 @@ extern const struct _mp_obj_module_t mp_module_network;
177
180
// extra constants
178
181
#define MICROPY_PORT_CONSTANTS \
179
182
{ MP_OBJ_NEW_QSTR(MP_QSTR_umachine), (mp_obj_t)&machine_module }, \
183
+ { MP_OBJ_NEW_QSTR(MP_QSTR_machine), (mp_obj_t)&machine_module }, \
180
184
{ MP_OBJ_NEW_QSTR(MP_QSTR_pyb), (mp_obj_t)&pyb_module }, \
181
185
{ MP_OBJ_NEW_QSTR(MP_QSTR_stm), (mp_obj_t)&stm_module }, \
182
186
You can’t perform that action at this time.
0 commit comments