Home
last modified time | relevance | path

Searched refs:_MAX_COLS (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Lib/idlelib/
Dcalltip.py147 _MAX_COLS = 85 variable
185 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] + '...'