Something to add to all your functions.
def wont_matter():
def r(func):
@functools.wraps(func)
def w(*args, **kwargs):
http://subprocess.call(["say", "I am running {} it won't matter".format(func.__name__)])
return w
return r
look at all that boilerplate to create a decorator.
♡ 0 ↻ 0