Returns the value of the 'key' attribute for the tag, or the value given for 'default' if it doesn't have that attribute.
(self, key, default=None)
| 574 | text = property(getText) |
| 575 | |
| 576 | def get(self, key, default=None): |
| 577 | """Returns the value of the 'key' attribute for the tag, or |
| 578 | the value given for 'default' if it doesn't have that |
| 579 | attribute.""" |
| 580 | return self._getAttrMap().get(key, default) |
| 581 | |
| 582 | def clear(self): |
| 583 | """Extract all children.""" |
no test coverage detected