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 techtonik
Recipients docs@python, techtonik
Date 2013-11-28.17:07:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385658424.56.0.963803246137.issue19824@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/2/library/string.html#template-strings

This class could be more useful with the following example:

>>> from string import Template
>>> t = Template('$who likes $what')
>>> who = 'tim'
>>> what = 'kung pao'
>>> t.substitute(locals())
'tim likes kung pao'

This will help PHP folks to transition their .php files.
History
Date User Action Args
2013-11-28 17:07:04techtoniksetrecipients: + techtonik, docs@python
2013-11-28 17:07:04techtoniksetmessageid: <1385658424.56.0.963803246137.issue19824@psf.upfronthosting.co.za>
2013-11-28 17:07:04techtoniklinkissue19824 messages
2013-11-28 17:07:04techtonikcreate