Message104519
I am not sure fixing this quirk of %-formatting is worth the trouble given that one simply use new style {}-formatting:
$ python-c 'import sys; print("{}.{}.{}-{}-{}".format(*sys.version_info))'
3.2.0-alpha-0
or a work-around
$ python -c 'import sys; print("%s.%s.%s-%s-%s" % tuple(sys.version_info))'
3.2.0-alpha-0 |
|
| Date |
User |
Action |
Args |
| 2010-04-29 15:18:57 | Alexander.Belopolsky | set | recipients:
+ Alexander.Belopolsky, rhettinger, eric.smith, ezio.melotti, Arfrever |
| 2010-04-29 15:18:57 | Alexander.Belopolsky | set | messageid: <[email protected]> |
| 2010-04-29 15:18:55 | Alexander.Belopolsky | link | issue8413 messages |
| 2010-04-29 15:18:55 | Alexander.Belopolsky | create | |
|