Format row according to DataRow format without padding.
(padded_cells, rowfmt)
| 2564 | |
| 2565 | |
| 2566 | def _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 | |
| 2572 | def _build_row(padded_cells, colwidths, colaligns, rowfmt): |
no outgoing calls
no test coverage detected