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 lrekucki
Recipients eric.smith, georg.brandl, lrekucki, terry.reedy
Date 2010-01-06.01:21:29
SpamBayes Score 0.0011007441
Marked as misclassified No
Message-id <1262740891.44.0.0623090639656.issue5965@psf.upfronthosting.co.za>
In-reply-to
Content
I see a problem with silently converting types without __format__() using str(). The user may write `"{:10s}".format(some_obj)`, which will work as long as some_obj doesn't have a formatter of it's own. If I later on, decide I want to add some custom formating to that object, there is a large chance I'll break a lot of code, 'cause doing it in backward-compatible way seems very difficult.
History
Date User Action Args
2010-01-06 01:21:31lrekuckisetrecipients: + lrekucki, georg.brandl, terry.reedy, eric.smith
2010-01-06 01:21:31lrekuckisetmessageid: <1262740891.44.0.0623090639656.issue5965@psf.upfronthosting.co.za>
2010-01-06 01:21:29lrekuckilinkissue5965 messages
2010-01-06 01:21:29lrekuckicreate