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.smith
Recipients barry, eli.bendersky, eric.smith, ethan.furman, serhiy.storchaka
Date 2013-08-14.20:57:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376513867.95.0.878649401767.issue18738@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think it's possible for int (PyLong) to handle a decision to format itself as a string. Personally, I'd like this:

>>> format(3, 's')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Unknown format code 's' for object of type 'int'

To continue to be an error.

This is exactly why the __format__ protocol was added: so a type could make a decision on how it should format itself. My only concern is the fragility of the proposed solution.
History
Date User Action Args
2013-08-14 20:57:47eric.smithsetrecipients: + eric.smith, barry, eli.bendersky, ethan.furman, serhiy.storchaka
2013-08-14 20:57:47eric.smithsetmessageid: <1376513867.95.0.878649401767.issue18738@psf.upfronthosting.co.za>
2013-08-14 20:57:47eric.smithlinkissue18738 messages
2013-08-14 20:57:47eric.smithcreate