Python Articles, Tutorials & News

Syscall Showdown: Python vs. Ruby

We’ve released a new version of Cirron that can now trace syscalls and record performance counters for individual lines of Ruby code, just like it could already do for Python (more here and here). It makes it very easy to quickly inspect what’s happening …

Read more »

Create your own Python decorator

Python decorators were introduced in v2.4 (in 2003! 💾) and allow you to enhance the behaviour of a function or method. When introduced in PEP 318, the goal was to make to extend the @classmethod syntactic support to other functions.

Read more »