Sagiv Malihi <sagivmal...@gmail.com> added the comment: 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... ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8733> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com