I have a base class with a lot of __init__ arguments:
__init__
class BaseClass(object): def __init__(self, a, b, c, d, e, f, ...): self._a=a+
super(SubClass, self).__init__(...)
Consider using *args and **kw if it helps solving your variable nightmare.