"massimo s." <[EMAIL PROTECTED]> wrote: > Now I know that: > - every sane Python class should return <type 'instance'> after > type(self)
Wrong. Only old style classes are 'instance' type, and you should never be using an old style class unless you have a very good reason for it. Always use 'object' (or another builtin type if appropriate) as a base class. -- http://mail.python.org/mailman/listinfo/python-list