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 christian.heimes
Recipients christian.heimes, pitrou, purcell, vdupras
Date 2008-02-21.20:05:14
SpamBayes Score 0.010340365
Marked as misclassified No
Message-id <1203624315.94.0.262313888816.issue2153@psf.upfronthosting.co.za>
In-reply-to
Content
All changes are looking fine to me but I haven't looked at the patch so far.

"__metaclass__ = type" is easier to write than subclassing from object.
Both are equivalent. 

>>> __metaclass__ = type
>>> class Foo: pass
...
>>> Foo
<class '__main__.Foo'>
>>> Foo.__bases__
(<type 'object'>,)
>>> type(Foo)
<type 'type'>
History
Date User Action Args
2008-02-21 20:05:16christian.heimessetspambayes_score: 0.0103404 -> 0.010340365
recipients: + christian.heimes, purcell, pitrou, vdupras
2008-02-21 20:05:15christian.heimessetspambayes_score: 0.0103404 -> 0.0103404
messageid: <1203624315.94.0.262313888816.issue2153@psf.upfronthosting.co.za>
2008-02-21 20:05:15christian.heimeslinkissue2153 messages
2008-02-21 20:05:14christian.heimescreate