Lines Matching refs:line
157 For Python-coded functions and methods, the first line is introspected.
160 empty line or _MAX_LINES. For builtins, this typically includes
191 for line in doc.split('\n', _MAX_LINES)[:_MAX_LINES]:
192 line = line.strip()
193 if not line:
195 if len(line) > _MAX_COLS:
196 line = line[: _MAX_COLS - 3] + '...'
197 lines.append(line)