The evolution of coroutine in Python

Coroutine… Read more

Similar

The Afterlife of Python 2

Python 2 is officially dead now (cf), with the python.org release of 2.17.18, the last release of Python 2 (also). That means that what happens now is its afterlife, because Python 2 being 'dead' doesn't mean that it's gone, and Python 2 is shaping up to ... (more…)

Read more »

Changing Python’s string search algorithms

Fredrik Lundh crafted our current string search algorithms, and they've served us very well. They're nearly always as fast as dumbest-possible brute force search, and sometimes much faster. This was bought with some very cheap one-pass preprocessing of t... (more…)

Read more »