Given the following function:
def foo(a, b, c): pass
How would one obtain a list/tuple/dict/etc of the arguments passed in, wit
One solution, using decorators, is here.