Return a new `p:txBody` element tree, suitable for use in an `p:sp` element.
(cls)
| 143 | |
| 144 | @classmethod |
| 145 | def new_p_txBody(cls): |
| 146 | """Return a new `p:txBody` element tree, suitable for use in an `p:sp` element.""" |
| 147 | xml = cls._p_txBody_tmpl() |
| 148 | return parse_xml(xml) |
| 149 | |
| 150 | @classmethod |
| 151 | def new_txPr(cls): |
no test coverage detected