(obj: BaseOxmlElement)
| 366 | """Callable that creates a new, empty element of the child type, having no attributes.""" |
| 367 | |
| 368 | def new_child_element(obj: BaseOxmlElement): |
| 369 | return OxmlElement(self._nsptagname) |
| 370 | |
| 371 | return new_child_element |
| 372 |
nothing calls this directly
no test coverage detected