Hi<br><br>I was wondering about this while working on profiling my program using the profile module.<br><br>Say we have the following:<br><br>@dec<br>def func:<br>     blah blah blah<br><br>When profiling the whole program, what would the total time for func represent? The time spent just in the original function or the time spent spent in the function along with the execution of the decorator's code?
<br><br>Thanks<br><br>