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 b4c982f commit af249bcCopy full SHA for af249bc
py/modsys.c
@@ -58,7 +58,7 @@ const mp_print_t mp_sys_stdout_print = {&mp_sys_stdout_obj, mp_stream_write_adap
58
#endif
59
60
// version - Python language version that this implementation conforms to, as a string
61
-STATIC MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_FULL_VERSION_INFO);
+STATIC const MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_FULL_VERSION_INFO);
62
63
// version_info - Python language version that this implementation conforms to, as a tuple of ints
64
#define I(n) MP_OBJ_NEW_SMALL_INT(n)
0 commit comments