Message9730

Author methane
Recipients methane, zyasoft
Date 2015-03-29.05:56:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427608569.57.0.879683225332.issue2301@psf.upfronthosting.co.za>
In-reply-to
Content
FYI, CPython2's time.strftime('%c') produces byte string, not unicode.

>>> import time
>>> time.strftime('%c')
'Sun Mar 29 14:54:48 2015'
>>> import locale
>>> locale.setlocale(locale.LC_ALL, '')
'ja_JP.UTF-8'
>>> time.strftime('%c')
'\xe6\x97\xa5  3/29 14:55:13 2015'
>>> print(_)
日  3/29 14:55:13 2015
History
Date User Action Args
2015-03-29 05:56:09methanesetmessageid: <1427608569.57.0.879683225332.issue2301@psf.upfronthosting.co.za>
2015-03-29 05:56:09methanesetrecipients: + methane, zyasoft
2015-03-29 05:56:09methanelinkissue2301 messages
2015-03-29 05:56:09methanecreate