2019-10-22T15:32:45Z
The Ultimate Guide to Python Decorators, Part II: Altering Function Behavior
Welcome to the second part of my Python decorator series. In the first part I showed you the most basic style of decorators, which are used to register functions as handlers or callbacks for events. In this part I'm going to show you more interesting decorators that alter or complement the behavior of the decorated function.
