Get whether the I{ns} is to B{not} be normalized. @param ns: A namespace. @type ns: (p,u) @return: True if to be skipped. @rtype: boolean
(self, ns)
| 1136 | return not self.skip(ns) |
| 1137 | |
| 1138 | def skip(self, ns): |
| 1139 | """ |
| 1140 | Get whether the I{ns} is to B{not} be normalized. |
| 1141 | @param ns: A namespace. |
| 1142 | @type ns: (p,u) |
| 1143 | @return: True if to be skipped. |
| 1144 | @rtype: boolean |
| 1145 | """ |
| 1146 | return ns in (None, Namespace.default, Namespace.xsdns, Namespace.xsins, Namespace.xmlns) |