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 sdague
Recipients sdague
Date 2014-09-25.10:42:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411641752.05.0.384907346066.issue22494@psf.upfronthosting.co.za>
In-reply-to
Content
The default time string is not localized for using locale specific formatting, but is instead hardcoded to a ','. 

https://hg.python.org/cpython/file/c87e00a6258d/Lib/logging/__init__.py#l483 demonstrates this.

Instead I think we should set that to the value of: locale.localeconv()['decimal_point']

While this clearly a very minor issue, I stare at enough logging output data that falls back to default formats (due to testing environments) that would love for this to be locale aware.
History
Date User Action Args
2014-09-25 10:42:32sdaguesetrecipients: + sdague
2014-09-25 10:42:32sdaguesetmessageid: <1411641752.05.0.384907346066.issue22494@psf.upfronthosting.co.za>
2014-09-25 10:42:32sdaguelinkissue22494 messages
2014-09-25 10:42:31sdaguecreate