MCPcopy Create free account
hub / github.com/F-Stack/f-stack / print_table_row

Function print_table_row

dpdk/doc/guides/conf.py:246–249  ·  view source on GitHub ↗

Print a single row of the table with fixed formatting.

(outfile, feature, line)

Source from the content-addressed store, hash-verified

244
245
246def print_table_row(outfile, feature, line):
247 """ Print a single row of the table with fixed formatting. """
248 line = line.rstrip()
249 print(' {:<{}}{}'.format(feature, feature_str_len, line), file=outfile)
250
251
252def print_table_divider(outfile, num_cols):

Callers 3

print_table_headerFunction · 0.85
print_table_bodyFunction · 0.85
print_table_dividerFunction · 0.85

Calls 1

printFunction · 0.50

Tested by

no test coverage detected