Bruno Desthuilliers  <[EMAIL PROTECTED]> wrote:
>Fuzzyman a écrit :
>> *Should* I in fact write :
>> 
>> class foo(object):
>>     def __init__(self, *args, **kwargs):
>>         object.__init__(self)
>> 
>> ?
>Nope.

And if you were to do so, surely:

class foo(object):
    def __init__(self, *args, **kwargs):
        super(foo, self).__init__(self)

would be the preferred way to go?

-- 
\S -- [EMAIL PROTECTED] -- http://www.chaos.org.uk/~sion/
  ___  |  "Frankly I have no feelings towards penguins one way or the other"
  \X/  |    -- Arthur C. Clarke
   her nu becomeþ se bera eadward ofdun hlæddre heafdes bæce bump bump bump
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to