File tree 2 files changed +5
-2
lines changed 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ static const char *example_2 =
38
38
"print('time.gmtime(736622952) = 2023-05-05T17:29:12Z:', time.gmtime(736622952))\n"
39
39
"import math\n"
40
40
"help(math)\n"
41
+ "import ctypes\n"
42
+ "help(ctypes)\n"
41
43
"import frozenhello\n"
42
44
"help(frozenhello)\n"
43
45
"print('frozenhello.hello():', frozenhello.hello())\n"
Original file line number Diff line number Diff line change 34
34
// Requires MICROPY_EVENT_POLL_HOOK, don't bother as we have no pollable objects.
35
35
#define MICROPY_PY_USELECT (0)
36
36
37
- // Can be enabled once extmod/moductypes.c is included in the build.
38
- #define MICROPY_PY_UCTYPES (0)
37
+ // On by default and works in this configuration, but disable it to avoid a
38
+ // linker error if you don't include extmod/moductypes.c in the build.
39
+ //#define MICROPY_PY_UCTYPES (0)
39
40
40
41
// Can be enabled once either shared/runtime/sys_stdio_mphal.c or
41
42
// extmod/vfs_posix_file.c is included in the build.
You can’t perform that action at this time.
0 commit comments