MCPcopy Index your code
hub / github.com/python/cpython / format_tsv_lines

Function format_tsv_lines

Tools/c-analyzer/cpython/_parser.py:25–29  ·  view source on GitHub ↗

Format entries for use in a TSV table.

(lines)

Source from the content-addressed store, hash-verified

23
24
25def format_tsv_lines(lines):
26 """Format entries for use in a TSV table."""
27 lines = ((_abs(first), *rest) for first, *rest in lines)
28 lines = map('\t'.join, lines)
29 return list(map(str.rstrip, lines))
30
31
32'''

Callers 1

_parser.pyFile · 0.85

Calls 2

_absFunction · 0.85
listClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…