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 pelson
Recipients Ramchandra Apte, eric.araujo, eric.smith, ezio.melotti, flox, meador.inge, ncoghlan, pelson, terry.reedy, vinay.sajip
Date 2012-10-31.12:08:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351685299.03.0.691508795385.issue13598@psf.upfronthosting.co.za>
In-reply-to
Content
The current patch fails to catch the fact that auto vs manual numbering has been used in following corner case:

from string import Formatter
print(Formatter().format("{0:{}}", 'foo', 5))


To fix this, without adding state to the formatter instance, some more information is going to need to be passed to the _vformat method.
History
Date User Action Args
2012-10-31 12:08:19pelsonsetrecipients: + pelson, terry.reedy, vinay.sajip, ncoghlan, eric.smith, ezio.melotti, eric.araujo, flox, meador.inge, Ramchandra Apte
2012-10-31 12:08:19pelsonsetmessageid: <1351685299.03.0.691508795385.issue13598@psf.upfronthosting.co.za>
2012-10-31 12:08:19pelsonlinkissue13598 messages
2012-10-31 12:08:18pelsoncreate