The Quest for Faster Python

Official CPython is slow, but there are many ways to get better performance… Read more

Similar

Keeping Python competitive

Subscribers to LWN.net made this article — and everything that surrounds it — possible. If you appreciate our content, please buy a subscription and make the next set of articles possible. (more…)

Read more »

Function Overloading in Python

Python natively does not support function overloading - having multiple functions with the same name. Today we see how we can implement and add this functionality to Python by using common language constructs like decorators and dictionaries. (more…)

Read more »