Refit (normalize) all of the attributes in the node. @param n: A node. @type n: L{Element}
(self, n)
| 1080 | self.refitAttrs(n) |
| 1081 | |
| 1082 | def refitAttrs(self, n): |
| 1083 | """ |
| 1084 | Refit (normalize) all of the attributes in the node. |
| 1085 | @param n: A node. |
| 1086 | @type n: L{Element} |
| 1087 | """ |
| 1088 | for a in n.attributes: |
| 1089 | self.refitAddr(a) |
| 1090 | |
| 1091 | def refitAddr(self, a): |
| 1092 | """ |