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

@@ -40,7 +40,7 @@
#if MICROPY_PY_SYS_MAXSIZE
// Export value for sys.maxsize
const mp_obj_int_t mp_maxsize_obj = {{&mp_type_int}, MP_SSIZE_MAX};
const mp_obj_int_t mp_sys_maxsize_obj = {{&mp_type_int}, MP_SSIZE_MAX};
#endif
mp_obj_t mp_obj_int_from_bytes_impl(bool big_endian, size_t len, const byte *buf) {