summaryrefslogtreecommitdiff
path: root/unix/modsocket.c
diff options
context:
space:
mode:
Diffstat (limited to 'unix/modsocket.c')
-rw-r--r--unix/modsocket.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/unix/modsocket.c b/unix/modsocket.c
index 82d833653..749e58328 100644
--- a/unix/modsocket.c
+++ b/unix/modsocket.c
@@ -453,16 +453,7 @@ STATIC const mp_map_elem_t mp_module_socket_globals_table[] = {
#undef C
};
-STATIC const mp_obj_dict_t mp_module_socket_globals = {
- .base = {&mp_type_dict},
- .map = {
- .all_keys_are_qstrs = 1,
- .table_is_fixed_array = 1,
- .used = MP_ARRAY_SIZE(mp_module_socket_globals_table),
- .alloc = MP_ARRAY_SIZE(mp_module_socket_globals_table),
- .table = (mp_map_elem_t*)mp_module_socket_globals_table,
- },
-};
+STATIC MP_DEFINE_CONST_DICT(mp_module_socket_globals, mp_module_socket_globals_table);
const mp_obj_module_t mp_module_socket = {
.base = { &mp_type_module },