[issue16623] argparse help formatter does not honor non-breaking space

2020-06-26 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue16623] argparse help formatter does not honor non-breaking space

2020-06-26 Thread hai shi
hai shi added the comment: > Python 2 is EOL, so I think this issue should be closed. +1, if someone need create a PR, we can reopen it again. -- ___ Python tracker ___

[issue16623] argparse help formatter does not honor non-breaking space

2020-06-22 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker ___

[issue16623] argparse help formatter does not honor non-breaking space

2019-10-08 Thread hai shi
hai shi added the comment: oh, typo error. the help_lines' width in python2.7 is different python3.-->the help_lines' width in python2.7 is different with python3.x -- ___ Python tracker

[issue16623] argparse help formatter does not honor non-breaking space

2019-10-08 Thread hai shi
hai shi added the comment: I checked the help format. the help_lines' width in python2.7 is different python3. The width is more likely a hardcode in https://github.com/python/cpython/blob/2.7/Lib/argparse.py#L165. , so the help_lines = [u'This is a very long help string. ex: "--s3',

[issue16623] argparse help formatter does not honor non-breaking space

2017-01-17 Thread Peter Otten
Changes by Peter Otten <__pete...@web.de>: -- nosy: +peter.otten ___ Python tracker ___ ___ Python-bugs-list

[issue16623] argparse help formatter does not honor non-breaking space

2017-01-16 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue16623] argparse help formatter does not honor non-breaking space

2017-01-16 Thread Xiang Zhang
Xiang Zhang added the comment: Ahh, sorry. I made a mistake. It's not the same as 29290. This is about 2.7. Although #20491 is closed but 2.7 seems not patched. Nosy Serhiy. -- nosy: +serhiy.storchaka resolution: fixed -> stage: resolved -> needs patch status: closed -> open

[issue16623] argparse help formatter does not honor non-breaking space

2017-01-16 Thread Xiang Zhang
Xiang Zhang added the comment: #29290 reports the same problem as here. -- nosy: +xiang.zhang resolution: -> fixed stage: -> resolved status: open -> closed superseder: -> argparse breaks long lines on NO-BREAK SPACE ___ Python tracker

[issue16623] argparse help formatter does not honor non-breaking space

2014-07-13 Thread Mark Lawrence
Mark Lawrence added the comment: The example code works fine using 3.4.1 and 3.5.0a0 on Windows 7. -- nosy: +BreamoreBoy, paul.j3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16623 ___

[issue16623] argparse help formatter does not honor non-breaking space

2014-07-13 Thread paul j3
paul j3 added the comment: The issue here is how `textwrap` handles the non-breaking space. That's being address here: http://bugs.python.org/issue20491 textwrap: Non-breaking space not honored Temporarily an `argparse` user can get around it with

[issue16623] argparse help formatter does not honor non-breaking space

2012-12-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +bethard ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16623 ___ ___ Python-bugs-list mailing

[issue16623] argparse help formatter does not honor non-breaking space

2012-12-05 Thread Roy Smith
New submission from Roy Smith: Running this code: --- import argparse p = argparse.ArgumentParser() p.add_argument('--foo', help=u'This is a very long help string. ex: --s3\u00A0s3://my.bucket/dir1/dir2') p.parse_args()

[issue16623] argparse help formatter does not honor non-breaking space

2012-12-05 Thread Chris Jerdonek
Changes by Chris Jerdonek chris.jerdo...@gmail.com: -- nosy: +chris.jerdonek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16623 ___ ___