Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f472ad commit 5513194Copy full SHA for 5513194
windows/mpconfigport.h
@@ -12,6 +12,7 @@
12
#define MICROPY_DEBUG_PRINTERS (1)
13
#define MICROPY_ENABLE_REPL_HELPERS (1)
14
#define MICROPY_ENABLE_LEXER_UNIX (1)
15
+#define MICROPY_MOD_SYS_STDFILES (1)
16
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
17
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
18
@@ -33,3 +34,5 @@ typedef void *machine_ptr_t; // must be of pointer size
33
34
typedef const void *machine_const_ptr_t; // must be of pointer size
35
36
extern const struct _mp_obj_fun_native_t mp_builtin_open_obj;
37
+#define MICROPY_EXTRA_BUILTINS \
38
+ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj },
0 commit comments