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 eric.araujo
Recipients alexis, eric.araujo, tarek
Date 2011-10-13.15:52:10
SpamBayes Score 1.9414209e-10
Marked as misclassified No
Message-id <1318521131.43.0.0575328734451.issue13166@psf.upfronthosting.co.za>
In-reply-to
Content
In code working with instances of packaging.database.Distribution, it’s bothersome to have to use '%r %s' % (dist.name, dist.version) all the time.  It is also not good-looking in 2.x, where we get u'name'.  I think it would be best to implement a __str__ method on the class and just use %s everywhere, for example in pysetup list and pysetup search.  More sophisticated clients that want to display projects in a GUI can still access dist.name, dist.version and other attributes.

I’ve insisted on using %r for project names and paths to avoid ambiguities with trailing spaces and such hard-to-catch things.  For logging output, we have to pass pure strings, but for direct console printing we could use ANSI escape sequences to display projects’ names in bold for example.
History
Date User Action Args
2011-10-13 15:52:11eric.araujosetrecipients: + eric.araujo, tarek, alexis
2011-10-13 15:52:11eric.araujosetmessageid: <1318521131.43.0.0575328734451.issue13166@psf.upfronthosting.co.za>
2011-10-13 15:52:10eric.araujolinkissue13166 messages
2011-10-13 15:52:10eric.araujocreate