In python is possible to implement function decorators to extend the behavior of functions and methods.
python
function decorators
In particular I\'m migrating a devi
As others have mentioned you are looking for AOP. PostSharp is a good post compile solution, but Castle DynamicProxy is a runtime AOP solution.