(self, name, attributes)
| 341 | return 1 |
| 342 | |
| 343 | def first_element_handler(self, name, attributes): |
| 344 | if self._filter is None and not self._elem_info: |
| 345 | self._finish_end_element = id |
| 346 | self.getParser().StartElementHandler = self.start_element_handler |
| 347 | self.start_element_handler(name, attributes) |
| 348 | |
| 349 | def start_element_handler(self, name, attributes): |
| 350 | node = self.document.createElement(name) |
nothing calls this directly
no test coverage detected