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 py.user
Recipients eric.smith, py.user, r.david.murray
Date 2012-01-16.04:25:47
SpamBayes Score 0.0029123349
Marked as misclassified No
Message-id <1326687948.4.0.191093126307.issue13790@psf.upfronthosting.co.za>
In-reply-to
Content
R. David Murray wrote:
> Putting nothing between the {}'s is an empty format string.

this is an empty replacement field

here:
http://docs.python.org/py3k/library/string.html#format-string-syntax

the definition of format string:
"Format strings contain “replacement fields” surrounded by curly braces {}. Anything that is not contained in braces is considered literal text, which is copied unchanged to the output."

"The grammar for a replacement field is as follows:"
replacement_field ::=  "{" [field_name] ["!" conversion] [":" format_spec] "}"
History
Date User Action Args
2012-01-16 04:25:48py.usersetrecipients: + py.user, eric.smith, r.david.murray
2012-01-16 04:25:48py.usersetmessageid: <1326687948.4.0.191093126307.issue13790@psf.upfronthosting.co.za>
2012-01-16 04:25:47py.userlinkissue13790 messages
2012-01-16 04:25:47py.usercreate