MCPcopy Create free account
hub / github.com/astanin/python-tabulate / _build_simple_row

Function _build_simple_row

tabulate/__init__.py:2566–2569  ·  view source on GitHub ↗

Format row according to DataRow format without padding.

(padded_cells, rowfmt)

Source from the content-addressed store, hash-verified

2564
2565
2566def _build_simple_row(padded_cells, rowfmt):
2567 "Format row according to DataRow format without padding."
2568 begin, sep, end = rowfmt
2569 return (begin + sep.join(padded_cells) + end).rstrip()
2570
2571
2572def _build_row(padded_cells, colwidths, colaligns, rowfmt):

Callers 3

_latex_rowFunction · 0.85
_build_rowFunction · 0.85
_build_lineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected