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 belopolsky, eric.smith, pitrou
Date 2010-11-24.15:57:33
SpamBayes Score 6.6307286e-05
Marked as misclassified No
Message-id <1290614257.49.0.501207174097.issue10521@psf.upfronthosting.co.za>
In-reply-to
Content
str.__format__ and friends (int, float, complex) also have this same problem. For example, when they're computing the "fill" character:

>>> format('', 'x^')
''

>>> format('', '\U00100140^')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Invalid conversion specification
History
Date User Action Args
2010-11-24 15:57:37eric.smithsetrecipients: + eric.smith, belopolsky, pitrou
2010-11-24 15:57:37eric.smithsetmessageid: <1290614257.49.0.501207174097.issue10521@psf.upfronthosting.co.za>
2010-11-24 15:57:33eric.smithlinkissue10521 messages
2010-11-24 15:57:33eric.smithcreate