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 martin.panter
Recipients hobarrera, martin.panter
Date 2017-02-06.06:55:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486364133.1.0.669836739097.issue29457@psf.upfronthosting.co.za>
In-reply-to
Content
>>> datetime.now().strftime("%x")
'02/06/17'
>>> from locale import setlocale, LC_TIME
>>> setlocale(LC_TIME)
'C'
>>> setlocale(LC_TIME, "en_US.utf8")
'en_US.utf8'
>>> datetime.now().strftime("%x")
'02/06/2017'
History
Date User Action Args
2017-02-06 06:55:33martin.pantersetrecipients: + martin.panter, hobarrera
2017-02-06 06:55:33martin.pantersetmessageid: <1486364133.1.0.669836739097.issue29457@psf.upfronthosting.co.za>
2017-02-06 06:55:33martin.panterlinkissue29457 messages
2017-02-06 06:55:32martin.pantercreate