While I have a general understanding (I think) of Python\'s *args and **kwargs, I\'m having trouble understanding how to pass them from one function through to another. Her
You pass them with syntax mirroring the argument syntax:
self.save_name_for(*args, **kwargs)
Note that you do not need to pass in self; save_name_for is already bound.
self
save_name_for