py/modsys: Use consistent naming pattern for module-level const objects.

This renames a few identifiers to follow the usual naming convention of
mp_<module>_<name>.  This makes them easier to find, e.g. when grep'ing.
This commit is contained in:
David Lechner
2020-05-22 11:10:15 -05:00
committed by Damien George
parent 9523ca92e0
commit 093fd80760
4 changed files with 8 additions and 8 deletions

View File

@@ -38,7 +38,7 @@ typedef struct _mp_obj_int_t {
#endif
} mp_obj_int_t;
extern const mp_obj_int_t mp_maxsize_obj;
extern const mp_obj_int_t mp_sys_maxsize_obj;
#if MICROPY_PY_BUILTINS_FLOAT
mp_float_t mp_obj_int_as_float_impl(mp_obj_t self_in);