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 jimjjewett
Recipients
Date 2007-04-24.21:16:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
> I'll take a look at #3, but I'm not quite familiar with the Py3k changes 

Don't worry too much -- for the most part, Py3k is just a matter of cleanup.  For reasonable code, there usually isn't much difference between

    class Old: ...

and 

    class New(object): ...

But this means that when there is a difference, it is a pain to debug.  So just stick with the version that will continue to be available (inheriting from object), and backwards-compatibility will take care of itself.
History
Date User Action Args
2007-08-23 15:58:13adminlinkissue1706323 messages
2007-08-23 15:58:13admincreate