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

Method runs

src/docx/text/paragraph.py:125–128  ·  view source on GitHub ↗

Sequence of |Run| instances corresponding to the elements in this paragraph.

(self)

Source from the content-addressed store, hash-verified

123
124 @property
125 def runs(self) -> List[Run]:
126 """Sequence of |Run| instances corresponding to the <w:r> elements in this
127 paragraph."""
128 return [Run(r, self) for r in self._p.r_lst]
129
130 @property
131 def style(self) -> ParagraphStyle | None:

Callers

nothing calls this directly

Calls 1

RunClass · 0.90

Tested by

no test coverage detected