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 dangyogi
Recipients dangyogi
Date 2008-04-08.19:51:03
SpamBayes Score 0.025527991
Marked as misclassified No
Message-id <1207684265.4.0.956293084225.issue2599@psf.upfronthosting.co.za>
In-reply-to
Content
Being forced to number the arguments when using positional arguments in
a format string is difficult to maintain.  Adding an argument to the
format string either requires renumbering all subsequent arguments, or
using an out of sequence number such that the order of the format()
arguments no longer matches the order of the "{...}" arguments.  Making
the integer optional would solve this.  Thus, "{}" would be like the old
"%s" where it was far easier to add %s arguments in the middle of the
format string.

Python 3.0a3
History
Date User Action Args
2008-04-08 19:51:06dangyogisetspambayes_score: 0.025528 -> 0.025527991
recipients: + dangyogi
2008-04-08 19:51:05dangyogisetspambayes_score: 0.025528 -> 0.025528
messageid: <1207684265.4.0.956293084225.issue2599@psf.upfronthosting.co.za>
2008-04-08 19:51:04dangyogilinkissue2599 messages
2008-04-08 19:51:03dangyogicreate