Skip to content
TILens What matters today in tech
Theme

Daily edition · Python

The daily ledger

TILens turns technical updates into a focused daily brief: official releases, trusted reporting, and practitioner analysis, deduplicated and organized by topic.

20 May 2026 edition
Python

TIL #145 – collections.deque is implemented in blocks

Today I learned that collections.deque is implemented as a doubly-linked list of blocks. collections.deque I've written about the data structure deque from the module collections extensively. In particular, I wrote a…

Source: mathspp