We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29018ad + cc4c4fa commit ef8501eCopy full SHA for ef8501e
extmod/modasyncio.c
@@ -160,11 +160,6 @@ static const mp_rom_map_elem_t task_queue_locals_dict_table[] = {
160
{ MP_ROM_QSTR(MP_QSTR_push), MP_ROM_PTR(&task_queue_push_obj) },
161
{ MP_ROM_QSTR(MP_QSTR_pop), MP_ROM_PTR(&task_queue_pop_obj) },
162
{ MP_ROM_QSTR(MP_QSTR_remove), MP_ROM_PTR(&task_queue_remove_obj) },
163
-
164
- // CIRCUITPY-CHANGE: Remove these in CircuitPython 10.0.0
165
- { MP_ROM_QSTR(MP_QSTR_push_head), MP_ROM_PTR(&task_queue_push_obj) },
166
- { MP_ROM_QSTR(MP_QSTR_push_sorted), MP_ROM_PTR(&task_queue_push_obj) },
167
- { MP_ROM_QSTR(MP_QSTR_pop_head), MP_ROM_PTR(&task_queue_pop_obj) },
168
};
169
static MP_DEFINE_CONST_DICT(task_queue_locals_dict, task_queue_locals_dict_table);
170
0 commit comments