micropython/extmod
Damien George caaff940a2 extmod/uasyncio: Rename and merge TaskQueue push/pop methods.
These are internal names and can be safely renamed without affecting user
code.  push_sorted() and push_head() are merged into a single push()
method, which is already how the C version is implemented.  pop_head() is
simply renamed to pop().

The changes are:
- q.push_sorted(task, t) -> q.push(task, t)
- q.push_head(task) -> q.push(task)
- q.pop_head() -> q.pop()

The shorter names and removal of push_head() leads to a code size reduction
of between 40 and 64 bytes on bare-metal targets.

Signed-off-by: Damien George <damien@micropython.org>
2022-04-22 16:37:02 +10:00
..
axtls-include
btstack
lwip-include
nimble
uasyncio extmod/uasyncio: Rename and merge TaskQueue push/pop methods. 2022-04-22 16:37:02 +10:00
webrepl
extmod.cmake extmod/extmod.cmake: Add micropy_lib_mbedtls component. 2022-04-04 23:15:01 +10:00
extmod.mk
machine_bitstream.c
machine_bitstream.h
machine_i2c.c extmod/machine_i2c: Increase default SoftI2C timeout to 50ms. 2022-01-21 15:10:30 +11:00
machine_i2c.h
machine_mem.c
machine_mem.h
machine_pinbase.c
machine_pinbase.h
machine_pulse.c
machine_pulse.h
machine_pwm.c
machine_pwm.h
machine_signal.c
machine_signal.h
machine_spi.c
machine_spi.h
misc.h stm32/moduos: Convert module to use extmod version. 2022-03-09 10:03:23 +11:00
modbluetooth.c extmod/modbluetooth: Fix conditional compilation of ringbuf_put_uuid. 2022-01-13 13:45:07 +11:00
modbluetooth.h extmod/modbluetooth: Put declaration of connect_cancel in correct place. 2022-01-13 13:45:43 +11:00
modbtree.c
modframebuf.c
modlwip.c extmod/modusocket: Provide config macro for socket.listen backlog deflt. 2022-04-11 15:28:56 +10:00
modnetwork.c
modnetwork.h extmod/modusocket: Add makefile() method and common socket options. 2022-01-21 13:34:06 +11:00
modonewire.c
moduasyncio.c extmod/uasyncio: Rename and merge TaskQueue push/pop methods. 2022-04-22 16:37:02 +10:00
modubinascii.c extmod/modubinascii: Add newline keyword to b2a_base64 function. 2022-01-23 10:18:01 +11:00
moducryptolib.c
moductypes.c
moduhashlib.c
moduheapq.c
modujson.c
moduos.c unix/moduos: Convert module to use extmod version. 2022-03-09 21:13:57 +11:00
moduplatform.c extmod/moduplatform: Move platform PP definitions into a header. 2022-02-22 00:59:14 +11:00
moduplatform.h extmod/moduplatform: Move platform PP definitions into a header. 2022-02-22 00:59:14 +11:00
modurandom.c
modure.c extmod/modure: Set subject begin_line so ^ doesn't match interior. 2022-03-16 12:21:00 +11:00
moduselect.c
modusocket.c extmod/modusocket: Provide config macro for socket.listen backlog deflt. 2022-04-11 15:28:56 +10:00
modussl_axtls.c
modussl_mbedtls.c
modutimeq.c
moduwebsocket.c
moduwebsocket.h
moduzlib.c extmod/moduzlib: Fix parsing zlib header dict size. 2022-03-08 23:16:14 +11:00
modwebrepl.c
mpbthci.c
mpbthci.h
network_cyw43.c
network_cyw43.h
network_ninaw10.c drivers/ninaw10: Add NIC-level ioctl function. 2022-02-18 14:35:26 +11:00
uos_dupterm.c stm32/moduos: Convert module to use extmod version. 2022-03-09 10:03:23 +11:00
utime_mphal.c
utime_mphal.h
vfs.c
vfs.h
vfs_blockdev.c
vfs_fat.c
vfs_fat.h
vfs_fat_diskio.c
vfs_fat_file.c
vfs_lfs.c
vfs_lfs.h
vfs_lfsx.c
vfs_lfsx_file.c
vfs_posix.c windows: Switch to VFS subsystem and use VfsPosix. 2022-03-10 00:26:36 +11:00
vfs_posix.h
vfs_posix_file.c
vfs_reader.c
virtpin.c
virtpin.h