[issue13720] argparse print_help() fails if COLUMNS is set to a low value

Terry J. Reedy report at bugs.python.org
Sat Jan 7 01:57:30 CET 2012


Terry J. Reedy <tjreedy at udel.edu> added the comment:

The code works fine on 3.2.2, Win7, IDLE, narrowest window possible (about 14 chars), which actually wraps to the window width. (In command window, lines are fixed length and scroll bar is added if window is narrowed.) What system and version are you running? 

The error directly comes from textwrap. In the other hand, textwrap.wrap works with widths down to 1 (on 3.2.2), which suggests that argparse is calling it wrong. Except that it is not on my system. 

Could you add 'print(width)' before the call to textwrap
    return _textwrap.wrap(text, width)
to see if -1 is being passed?

----------
nosy: +bethard, georg.brandl, terry.reedy

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13720>
_______________________________________


More information about the Python-bugs-list mailing list