We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de7e360 commit 1e164beCopy full SHA for 1e164be
2 files changed
ports/powerpc/main.c
@@ -115,11 +115,6 @@ mp_import_stat_t mp_import_stat(const char *path) {
115
return MP_IMPORT_STAT_NO_EXIST;
116
}
117
118
-mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
119
- return mp_const_none;
120
-}
121
-MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);
122
-
123
void nlr_jump_fail(void *val) {
124
while (1) {
125
;
ports/powerpc/mpconfigport.h
@@ -94,10 +94,6 @@
94
95
typedef long mp_off_t;
96
97
-// extra built in names to add to the global namespace
98
-#define MICROPY_PORT_BUILTINS \
99
- { MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
100
101
#define MICROPY_HW_BOARD_NAME "bare-metal"
102
#define MICROPY_HW_MCU_NAME "POWERPC"
103
0 commit comments