Message249364
| 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:10 | eric.smith | set | recipients:
+ eric.smith |
| 2015年08月30日 17:51:10 | eric.smith | set | messageid: <1440957070.33.0.503722869447.issue24965@psf.upfronthosting.co.za> |
| 2015年08月30日 17:51:10 | eric.smith | link | issue24965 messages |
| 2015年08月30日 17:51:10 | eric.smith | create |
|