Cause new child element specified by *child_bldr* to be appended to the children of this element.
(self, child_bldr)
| 46 | return elm |
| 47 | |
| 48 | def with_child(self, child_bldr): |
| 49 | """ |
| 50 | Cause new child element specified by *child_bldr* to be appended to |
| 51 | the children of this element. |
| 52 | """ |
| 53 | self._child_bldrs.append(child_bldr) |
| 54 | return self |
| 55 | |
| 56 | def with_nsdecls(self, *nspfxs): |
| 57 | """ |