So I\'m still kind of new to Python decorators - I\'ve used them before, but I\'ve never made my own. I\'m reading this tutorial (that particular paragraph) and I don\'t seem to
A decorator modifies a function by adding a wrapper to it. At the time you decorate the function, it isn't being called yet, so you don't have any arguments (or keyword arguments) to look at. All you can do for now is create a new function that will handle those arguments when it finally gets them.