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 750912d commit a20d445Copy full SHA for a20d445
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 const 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_BANNER_NAME_AND_VERSION);
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