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 gruszczy
Recipients ebehar, eric.smith, ezio.melotti, gruszczy, rhettinger
Date 2010-03-18.16:17:01
SpamBayes Score 5.5600485e-05
Marked as misclassified No
Message-id <1268929026.29.0.262829264626.issue6081@psf.upfronthosting.co.za>
In-reply-to
Content
I have created a small patch, that adds method that formats using a dict. It's the first time I have written anything in python implementation, so I would very appreciate any advice. Change allows the following:

>>> m = Mapping(a='b')
>>> '{a} {c}'.format_using_mapping(m)
'b c'
>>>
History
Date User Action Args
2010-03-18 16:17:06gruszczysetrecipients: + gruszczy, rhettinger, eric.smith, ezio.melotti, ebehar
2010-03-18 16:17:06gruszczysetmessageid: <1268929026.29.0.262829264626.issue6081@psf.upfronthosting.co.za>
2010-03-18 16:17:02gruszczylinkissue6081 messages
2010-03-18 16:17:02gruszczycreate