(obj: BaseOxmlElement)
| 364 | from docx.oxml.parser import OxmlElement |
| 365 | |
| 366 | def new_child_element(obj: BaseOxmlElement): |
| 367 | return OxmlElement(self._nsptagname) |
| 368 | |
| 369 | return new_child_element |
| 370 |
nothing calls this directly
no test coverage detected