mlguruz

Results 2 issues of mlguruz

### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. -...

enhancement

If I just ran the example from the doc: ``` from decorator import decorator @decorator def warn_slow(func, timelimit=60, *args, **kw): print(kw) t0 = time.time() result = func(*args, **kw) dt =...