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 David Perra
Recipients David Perra, paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-06-08.05:25:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465363557.77.0.0608625622508.issue27264@psf.upfronthosting.co.za>
In-reply-to
Content
The execution of these commands in python 3.4.x (Windows 10 Home)

    import locale
    from datetime import datetime
    locale.setlocale(locale.LC_ALL, 'Spanish')
    datetime.strftime(datetime.now(), '%a %d %b %Y')

renders the output

    'Spanish_Spain.1252'
    'mar 07 jun 2016'

but with Python 3.5.x the output is

'Spanish_Spain.1252'
'ma. 07 jun. 2016'
History
Date User Action Args
2016-06-08 05:25:57David Perrasetrecipients: + David Perra, paul.moore, tim.golden, zach.ware, steve.dower
2016-06-08 05:25:57David Perrasetmessageid: <1465363557.77.0.0608625622508.issue27264@psf.upfronthosting.co.za>
2016-06-08 05:25:57David Perralinkissue27264 messages
2016-06-08 05:25:57David Perracreate