MCPcopy Index your code
hub / github.com/python-openxml/python-docx / _trs_xml

Method _trs_xml

src/docx/oxml/table.py:244–245  ·  view source on GitHub ↗
(cls, row_count: int, col_count: int, col_width: Length)

Source from the content-addressed store, hash-verified

242
243 @classmethod
244 def _trs_xml(cls, row_count: int, col_count: int, col_width: Length) -> str:
245 return f" <w:tr>\n{cls._tcs_xml(col_count, col_width)} </w:tr>\n" * row_count
246
247 @classmethod
248 def _tcs_xml(cls, col_count: int, col_width: Length) -> str:

Callers 1

_tbl_xmlMethod · 0.80

Calls 1

_tcs_xmlMethod · 0.80

Tested by

no test coverage detected