[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> help() modifies the string module ___ Python tracker __

[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Eric V. Smith
Eric V. Smith added the comment: This is a duplicate of issue 39079. I recommend that we don't "fix" this. It is only an issue with 2.7, and hasn't been a problem for years. -- nosy: +eric.smith ___ Python tracker

[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Manish
Change by Manish : -- keywords: +patch pull_requests: +17117 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17650 ___ Python tracker ___ _

[issue39084] string.letters is flipped after setlocale is called

2019-12-17 Thread Manish
New submission from Manish : Steps to reproduce: >>> import string >>> string.letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' >>> help(string) .. >>> string.letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' The help(string) can also be replaced with locale.setl