aboutsummaryrefslogtreecommitdiff
path: root/py/objint_mpz.c
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_mpz.c
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_mpz.c')
-rw-r--r--py/objint_mpz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint_mpz.c b/py/objint_mpz.c
index f2f0dbc3a..6e52073a6 100644
--- a/py/objint_mpz.c
+++ b/py/objint_mpz.c
@@ -66,7 +66,7 @@ STATIC const mpz_dig_t maxsize_dig[] = {
#endif
};
// *FORMAT-ON*
-const mp_obj_int_t mp_maxsize_obj = {
+const mp_obj_int_t mp_sys_maxsize_obj = {
{&mp_type_int},
{.fixed_dig = 1, .len = NUM_DIG, .alloc = NUM_DIG, .dig = (mpz_dig_t *)maxsize_dig}
};