summaryrefslogtreecommitdiffstatshomepage
path: root/py/moduerrno.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-08-18 14:47:56 +1000
committerJim Mussared <jim.mussared@gmail.com>2023-06-08 17:54:04 +1000
commit1bf2dcb15ecf4ba37211327f4378b164a5aaf567 (patch)
tree801a5d3770aa8ed4ce7ceab2c7dcea4fd7db65cf /py/moduerrno.c
parentdfe232d0003b9f381643050c06c547fc3093e9e1 (diff)
downloadmicropython-1bf2dcb15ecf4ba37211327f4378b164a5aaf567.tar.gz
micropython-1bf2dcb15ecf4ba37211327f4378b164a5aaf567.zip
all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py/moduerrno.c')
-rw-r--r--py/moduerrno.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/py/moduerrno.c b/py/moduerrno.c
index e197f921e1..ed172ae4d6 100644
--- a/py/moduerrno.c
+++ b/py/moduerrno.c
@@ -81,7 +81,7 @@ STATIC const mp_obj_dict_t errorcode_dict = {
};
#endif
-STATIC const mp_rom_map_elem_t mp_module_uerrno_globals_table[] = {
+STATIC const mp_rom_map_elem_t mp_module_errno_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_errno) },
#if MICROPY_PY_UERRNO_ERRORCODE
{ MP_ROM_QSTR(MP_QSTR_errorcode), MP_ROM_PTR(&errorcode_dict) },
@@ -92,14 +92,14 @@ STATIC const mp_rom_map_elem_t mp_module_uerrno_globals_table[] = {
#undef X
};
-STATIC MP_DEFINE_CONST_DICT(mp_module_uerrno_globals, mp_module_uerrno_globals_table);
+STATIC MP_DEFINE_CONST_DICT(mp_module_errno_globals, mp_module_errno_globals_table);
-const mp_obj_module_t mp_module_uerrno = {
+const mp_obj_module_t mp_module_errno = {
.base = { &mp_type_module },
- .globals = (mp_obj_dict_t *)&mp_module_uerrno_globals,
+ .globals = (mp_obj_dict_t *)&mp_module_errno_globals,
};
-MP_REGISTER_MODULE(MP_QSTR_errno, mp_module_uerrno);
+MP_REGISTER_MODULE(MP_QSTR_errno, mp_module_errno);
qstr mp_errno_to_str(mp_obj_t errno_val) {
#if MICROPY_PY_UERRNO_ERRORCODE
@@ -112,9 +112,9 @@ qstr mp_errno_to_str(mp_obj_t errno_val) {
}
#else
// We don't have the errorcode dict so do a simple search in the modules dict
- for (size_t i = 0; i < MP_ARRAY_SIZE(mp_module_uerrno_globals_table); ++i) {
- if (errno_val == mp_module_uerrno_globals_table[i].value) {
- return MP_OBJ_QSTR_VALUE(mp_module_uerrno_globals_table[i].key);
+ for (size_t i = 0; i < MP_ARRAY_SIZE(mp_module_errno_globals_table); ++i) {
+ if (errno_val == mp_module_errno_globals_table[i].value) {
+ return MP_OBJ_QSTR_VALUE(mp_module_errno_globals_table[i].key);
}
}
return MP_QSTRnull;