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 barry
Recipients barry, docs@python, techtonik
Date 2013-11-28.17:35:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20131128123517.5d087dd6@anarchist>
In-reply-to <1385658424.56.0.963803246137.issue19824@psf.upfronthosting.co.za>
Content
On Nov 28, 2013, at 05:07 PM, anatoly techtonik wrote:

>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.

I'm not sure what you want to add to the class.  Your example works out of the
box.  See this for an approach my third party library takes:

http://pythonhosted.org/flufl.i18n/docs/using.html#substitutions-and-placeholders
History
Date User Action Args
2013-11-28 17:35:15barrysetrecipients: + barry, techtonik, docs@python
2013-11-28 17:35:15barrylinkissue19824 messages
2013-11-28 17:35:15barrycreate