In a previous blog post, I've estimated Python OO method call overhead to be about 10% over function calls. What about exception handling?
Here the situation differs. Exceptions are so pervasive in Python core language that handling exceptional cases of your code via adding more exceptions do not add much …