(self)
| 660 | self._current_label = d |
| 661 | |
| 662 | def end_label(self): |
| 663 | debug("") |
| 664 | label = self._current_label |
| 665 | if label is None: |
| 666 | # something is ugly in the HTML, but we're ignoring it |
| 667 | return |
| 668 | self._current_label = None |
| 669 | # if it is staying around, it is True in all cases |
| 670 | del label["__taken"] |
| 671 | |
| 672 | def _add_label(self, d): |
| 673 | #debug("%s", d) |
no test coverage detected