On 8/1/07, Evan Klitzke <[EMAIL PROTECTED]> wrote:
> Hi list,
>
> I was reading this article: http://fuhm.net/super-harmful/ and didn't
> understand the comment about calling super(Foo, self).__init__() when
> Foo inherits only from object. Can someone on the list elaborate more
> on why one should
Florian Lindner wrote:
> Hello,
> I try to call the superclass of the ConfigParser object:
>
> class CustomizedConfParser(ConfigParser.SafeConfigParser):
> def get(self, section, attribute):
> try:
> return super(CustomizedConfParser, self).get(section,
> attri