Łukasz Rekucki <lreku...@gmail.com> added the comment:

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.

----------
nosy: +lrekucki

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue5965>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to