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 aseques
Recipients aseques
Date 2019-09-18.21:09:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568840992.04.0.229419861968.issue38220@roundup.psfhosted.org>
In-reply-to
Content
Issue can be reproduced with this snippet:
---
import locale
from datetime import datetime
locale.setlocale(locale.LC_ALL, 'ca_AD.utf8')
locale.setlocale(locale.LC_ALL, 'ca_ES.utf8')
#locale.setlocale(locale.LC_ALL, 'es_ES.utf8')
now = datetime.now() # current date and time
date_time = now.strftime("|%b|%B|")
print("date and time:",date_time)   
---
History
Date User Action Args
2019-09-18 21:09:52asequessetrecipients: + aseques
2019-09-18 21:09:52asequessetmessageid: <1568840992.04.0.229419861968.issue38220@roundup.psfhosted.org>
2019-09-18 21:09:52asequeslinkissue38220 messages
2019-09-18 21:09:51asequescreate