Searched refs:_MAX_COLS (Results 1 – 1 of 1) sorted by relevance
147 _MAX_COLS = 85 variable185 lines = (textwrap.wrap(argspec, _MAX_COLS, subsequent_indent=_INDENT)186 if len(argspec) > _MAX_COLS else [argspec] if argspec else [])195 if len(line) > _MAX_COLS:196 line = line[: _MAX_COLS - 3] + '...'