We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8834330 commit de7e360Copy full SHA for de7e360
2 files changed
ports/pic16bit/main.c
@@ -110,11 +110,6 @@ mp_import_stat_t mp_import_stat(const char *path) {
110
return MP_IMPORT_STAT_NO_EXIST;
111
}
112
113
-mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
114
- return mp_const_none;
115
-}
116
-MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);
117
-
118
void nlr_jump_fail(void *val) {
119
while (1) {
120
;
ports/pic16bit/mpconfigport.h
@@ -79,10 +79,6 @@
79
80
typedef int mp_off_t;
81
82
-// extra builtin names to add to the global namespace
83
-#define MICROPY_PORT_BUILTINS \
84
- { MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },
85
86
#define MP_STATE_PORT MP_STATE_VM
87
88
#define MICROPY_MPHALPORT_H "pic16bit_mphal.h"
0 commit comments