mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
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:
committed by
Damien George
parent
9523ca92e0
commit
093fd80760
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user