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 Alexander.Belopolsky
Recipients Alexander.Belopolsky, Arfrever, eric.smith, ezio.melotti, rhettinger
Date 2010-04-29.15:18:55
SpamBayes Score 0.015464926
Marked as misclassified No
Message-id <1272554337.23.0.944753816065.issue8413@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2010-04-29 15:18:57Alexander.Belopolskysetrecipients: + Alexander.Belopolsky, rhettinger, eric.smith, ezio.melotti, Arfrever
2010-04-29 15:18:57Alexander.Belopolskysetmessageid: <1272554337.23.0.944753816065.issue8413@psf.upfronthosting.co.za>
2010-04-29 15:18:55Alexander.Belopolskylinkissue8413 messages
2010-04-29 15:18:55Alexander.Belopolskycreate