This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Sagiv.Malihi
Recipients Sagiv.Malihi, alonho, benjamin.peterson
Date 2010-05-19.13:40:29
SpamBayes Score 0.3070986
Marked as misclassified No
Message-id <1274276430.53.0.00268645985613.issue8733@psf.upfronthosting.co.za>
In-reply-to
Content
Example:

class A(object):
 def __init__(self):
  print "initializing something very important"
  # and then pay it forward...
  super(A, self).__init__()

class B(list, A): pass

b = B()
# A's init is never called...
History
Date User Action Args
2010-05-19 13:40:30Sagiv.Malihisetrecipients: + Sagiv.Malihi, benjamin.peterson, alonho
2010-05-19 13:40:30Sagiv.Malihisetmessageid: <1274276430.53.0.00268645985613.issue8733@psf.upfronthosting.co.za>
2010-05-19 13:40:29Sagiv.Malihilinkissue8733 messages
2010-05-19 13:40:29Sagiv.Malihicreate