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 eric.smith
Recipients eric.smith
Date 2015-08-30.17:51:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440957070.33.0.503722869447.issue24965@psf.upfronthosting.co.za>
In-reply-to
Content
One thing I've done in this implementation is to build up a string to pass to str.format(), instead of using the original string. This new string uses positional parameters instead of named parameters.

I had originally proposed to add a string.interpolate() to do the heavy lifting here, which would have meant I could use the original string (as seen in the source code), and not build up a new string and pass it to str.format(). I still might do that, but for now, the approach using str.format() is good enough.
History
Date User Action Args
2015-08-30 17:51:10eric.smithsetrecipients: + eric.smith
2015-08-30 17:51:10eric.smithsetmessageid: <1440957070.33.0.503722869447.issue24965@psf.upfronthosting.co.za>
2015-08-30 17:51:10eric.smithlinkissue24965 messages
2015-08-30 17:51:10eric.smithcreate