Initializes a map representation of this tag's attributes, if not already initialized.
(self)
| 862 | #Private methods |
| 863 | |
| 864 | def _getAttrMap(self): |
| 865 | """Initializes a map representation of this tag's attributes, |
| 866 | if not already initialized.""" |
| 867 | if not getattr(self, 'attrMap'): |
| 868 | self.attrMap = {} |
| 869 | for (key, value) in self.attrs: |
| 870 | self.attrMap[key] = value |
| 871 | return self.attrMap |
| 872 | |
| 873 | #Generator methods |
| 874 | def childGenerator(self): |
no outgoing calls
no test coverage detected