dceaad716a
This allows us to translate lisp argument lists to Python ones. (defun foo (x y &rest z &optional {foo 3} &aux kwargs)) translates roughly to: def foo(x, y, *z, foo=3, **kwargs): pass