Message82002
auto_number_formatter_2.py lets you experiment with this with a syntax
more similar to what ''.format() looks like:
$ ./python
Python 2.7a0 (trunk:69608, Feb 14 2009, 04:51:18)
[GCC 4.1.2 20070626 (Red Hat 4.1.2-13)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from auto_number_formatter_2 import formatter as _
>>> _('{} {} {}').format(3, 'pi', 3.14)
'3 pi 3.14'
>>>
It still doesn't handle escaping '{' and '}', but is otherwise complete.
If the consensus is that this is useful, I'll implement it in
''.format(), otherwise I'm done with this issue. |
|
Date |
User |
Action |
Args |
2009-02-14 10:03:52 | eric.smith | set | recipients:
+ eric.smith, terry.reedy, mark.dickinson, pitrou, LambertDW, ezio.melotti |
2009-02-14 10:03:51 | eric.smith | set | messageid: <1234605831.58.0.36317262213.issue5237@psf.upfronthosting.co.za> |
2009-02-14 10:03:49 | eric.smith | link | issue5237 messages |
2009-02-14 10:03:49 | eric.smith | create | |
|