aboutsummaryrefslogtreecommitdiff
path: root/py/objint.h
diff options
context:
space:
mode:
authorDavid Lechner <david@pybricks.com>2020-05-22 11:10:15 -0500
committerDamien George <damien.p.george@gmail.com>2020-05-28 10:02:14 +1000
commit093fd807606d088cfaf874e79060a6c68484cbfa (patch)
treed811e8afdadd5029184a7b3948814f66230261e9 /py/objint.h
parent9523ca92e03e699494560ec964bea748b291c7a0 (diff)
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.
Diffstat (limited to 'py/objint.h')
-rw-r--r--py/objint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint.h b/py/objint.h
index c4752384e..5eed87705 100644
--- a/py/objint.h
+++ b/py/objint.h
@@ -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);