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 asvetlov, belopolsky, brett.cannon, docs@python, eric.araujo, eric.smith, ezio.melotti, flox, heikki.partanen, r.david.murray
Date 2012-11-05.12:37:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352119050.46.0.0101675749246.issue8913@psf.upfronthosting.co.za>
In-reply-to
Content
To Heikki Partanen excellent point in the review about date __format__ strings allowing you to combine date formatting with other types of formatting:

This is a great point. It's the lack of this that (for example) requires the logging module to have a separate datefmt parameter. With %-formatting, there's no easy way to say:

'{timestamp:%Y%m%d-%H%M%S} {hostname:^40} {count:02d}'.format(timestamp=ts, hostname=host, count=count)

That is, with %-formatting you can't have a single string that specifies both a date/time format and other formatting as well as other formatting specifiers.

I don't think the example in the patch is great, but I do think that it's a good point that needs to be emphasized.
History
Date User Action Args
2012-11-05 12:37:30eric.smithsetrecipients: + eric.smith, brett.cannon, belopolsky, ezio.melotti, eric.araujo, r.david.murray, asvetlov, flox, docs@python, heikki.partanen
2012-11-05 12:37:30eric.smithsetmessageid: <1352119050.46.0.0101675749246.issue8913@psf.upfronthosting.co.za>
2012-11-05 12:37:30eric.smithlinkissue8913 messages
2012-11-05 12:37:30eric.smithcreate