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 Gerrit.Holl
Recipients Gerrit.Holl, docs@python
Date 2014-01-20.17:10:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390237853.97.0.751678212058.issue20314@psf.upfronthosting.co.za>
In-reply-to
Content
The standard library documentation “6.1. string — Common string operations” describes string formatting through the `.format` method and the corresponding mini-language, and the `Template` class.  In the part describing the `Template` class (6.1.4) is the text:

> Instead of the normal %-based substitutions, Templates support $-based substitutions, using the following rules:

This is potentially confusing.  The documentation in this section has not made any mention of %-based substitutions.  Rather, a novel reader may, at this point, think that {}-based substitution is normal.  I would suggest to resolve this issue by simply not mentioning %-based substitutions, replacing the sentence above by:

> Templates support $-based substitutions, using the following rules:
History
Date User Action Args
2014-01-20 17:10:54Gerrit.Hollsetrecipients: + Gerrit.Holl, docs@python
2014-01-20 17:10:53Gerrit.Hollsetmessageid: <1390237853.97.0.751678212058.issue20314@psf.upfronthosting.co.za>
2014-01-20 17:10:53Gerrit.Holllinkissue20314 messages
2014-01-20 17:10:53Gerrit.Hollcreate