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 belopolsky
Recipients belopolsky, hollec, jjlee, vstinner
Date 2011-02-18.15:43:51
SpamBayes Score 1.5590102e-05
Marked as misclassified No
Message-id <AANLkTi=u4eNYpH+SxFwLC10h6g6UJhrcfJL00n4km=Vm@mail.gmail.com>
In-reply-to <1298043062.25.0.42838649885.issue5537@psf.upfronthosting.co.za>
Content
While it is unlikely that a purely numeric format such as "%Y-%m-%d
%H:%M:%S" will be locale dependent, it is possible that some pre-C99
systems would format dates using exotic digits is some locales.  Given
that format is so simple, I would just use explicit formatting of dt
components instead of datetime.strftime.  Doing so will also eliminate
a call to system strftime which is known to be quirky on popular
platforms even in C locale.
History
Date User Action Args
2011-02-18 15:43:53belopolskysetrecipients: + belopolsky, jjlee, vstinner, hollec
2011-02-18 15:43:52belopolskylinkissue5537 messages
2011-02-18 15:43:51belopolskycreate