Please the beast?

This commit is contained in:
Bill Sideris 2024-01-17 23:29:49 +02:00
parent f4a6acd136
commit a7e45014a5
No known key found for this signature in database
GPG key ID: 1BEF1BCEBA58EA33

View file

@ -58,7 +58,7 @@ const mp_print_t mp_sys_stdout_print = {&mp_sys_stdout_obj, mp_stream_write_adap
#endif
// version - Python language version that this implementation conforms to, as a string
STATIC const MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_FULL_VERSION_INFO);
STATIC MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_FULL_VERSION_INFO);
// version_info - Python language version that this implementation conforms to, as a tuple of ints
#define I(n) MP_OBJ_NEW_SMALL_INT(n)