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 LambertDW
Recipients LambertDW, eric.smith, ezio.melotti, mark.dickinson, pitrou, terry.reedy
Date 2009-02-13.14:39:06
SpamBayes Score 0.16914839
Marked as misclassified No
Message-id <1234535948.04.0.206574065216.issue5237@psf.upfronthosting.co.za>
In-reply-to
Content
Answering first question msg81873.

Without colon separator, this might be considered confusing:

>>> (
...     '{d}{s}{f}{f}'.format(3, 'foo', 3.14, 2.72),
...     '{d}{s}{f}{f}'.format(d=3, s='foo', f=3.14)
... )
('3foo3.1400002.720000', '3foo3.143.14')
History
Date User Action Args
2009-02-13 14:39:08LambertDWsetrecipients: + LambertDW, terry.reedy, mark.dickinson, pitrou, eric.smith, ezio.melotti
2009-02-13 14:39:08LambertDWsetmessageid: <1234535948.04.0.206574065216.issue5237@psf.upfronthosting.co.za>
2009-02-13 14:39:06LambertDWlinkissue5237 messages
2009-02-13 14:39:06LambertDWcreate