Searched refs:_MAX_COLS (Results 1 – 3 of 3) 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] + '...'
135 _MAX_COLS = 85 variable199 lines = (textwrap.wrap(argspec, _MAX_COLS, subsequent_indent=_INDENT)200 if len(argspec) > _MAX_COLS else [argspec] if argspec else [])211 if len(line) > _MAX_COLS:212 line = line[: _MAX_COLS - 3] + '...'
83 self.assertEqual(signature(f), '()\n' + 'a' * (ct._MAX_COLS-3) + '...')97 '()\n' + s + (ct._MAX_COLS - 3) * 'e' + '...')