Serhiy Storchaka added the comment:

`str(object)` is not a protocol for getting a string out of an object. It's a 
protocol for getting a string for print(). __str__ is defined for every object 
and therefore is useless for getting a string out of "string-like" object (as 
__float__ for floats and __bytes__ for bytes). Perhaps we need a new special 
method __string__ that relates to __str__ as __index__ to __int__.

----------
nosy: +serhiy.storchaka

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

Reply via email to