Possible Duplicate:
Shortcut for super(type(self), self)
Every example I've seen of using super in Python 2.x looks like this: super(ClassName, self).
Is there any reason not to use super(type(self), self)?
Possible Duplicate:
Shortcut for super(type(self), self)
Every example I've seen of using super in Python 2.x looks like this: super(ClassName, self).
Is there any reason not to use super(type(self), self)?