[issue31475] Bug in argparse - not supporting utf8

2017-09-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue31475] Bug in argparse - not supporting utf8

2017-09-30 Thread INADA Naoki
INADA Naoki added the comment: We already accept PEP 529 and PEP 538. And there are #15216 (PR 2343). So I don't think we need more solutions. -- ___ Python tracker ___ ___

[issue31475] Bug in argparse - not supporting utf8

2017-09-25 Thread Josh Rosenberg
Josh Rosenberg added the comment: Based on the OP's patch, it looks like they have a problem where they have non-ASCII text in their output strings (either due to using non-ASCII switches, or using non-ASCII help documentation), but sys.stdout/sys.stderr are configured for some encoding that d

[issue31475] Bug in argparse - not supporting utf8

2017-09-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue31475] Bug in argparse - not supporting utf8

2017-09-24 Thread INADA Naoki
INADA Naoki added the comment: ping? May I close this issue and pull request? -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue31475] Bug in argparse - not supporting utf8

2017-09-17 Thread INADA Naoki
INADA Naoki added the comment: You reported stack trace on Github pull request. But discussion should be made here, not in pull request. As far as reading traceback, your problem is solved already in Python 3.6, by PEP 528. -- nosy: +inada.naoki ___

[issue31475] Bug in argparse - not supporting utf8

2017-09-14 Thread R. David Murray
R. David Murray added the comment: Note that as far as I know without a reproducer, it is confusing to me to talk about argparse supporting or not supporting utf8. It deals only with text strings, which are unicode. Or is this a 2.7 only bug report? (Although even there it would be a questi

[issue31475] Bug in argparse - not supporting utf8

2017-09-14 Thread R. David Murray
R. David Murray added the comment: As I requested in the PR, please provide a way to reproduce the bug you are reporting. -- nosy: +r.david.murray ___ Python tracker ___ __

[issue31475] Bug in argparse - not supporting utf8

2017-09-14 Thread Ali Razmjoo
New submission from Ali Razmjoo: Regarding #3468 discussion, there is the same bug was in argparse (and optparse) which fixed in this PR. utf8 is not supported in argprase module #3478: https://github.com/python/cpython/pull/3577 current pr: https://github.com/python/cpython/pull/3577 Regards.