Home | History | Annotate | Download | only in dom

Lines Matching defs:Namespaces

396     # If this ever changes, Namespaces.end_element_handler() needs to

718 class Namespaces:
719 """Mix-in class for builders; adds support for namespaces."""
818 class ExpatBuilderNS(Namespaces, ExpatBuilder):
819 """Document builder that supports namespaces."""
826 class FragmentBuilderNS(Namespaces, FragmentBuilder):
827 """Fragment builder that supports namespaces."""
911 def parse(file, namespaces=True):
916 if namespaces:
932 def parseString(string, namespaces=True):
936 if namespaces:
943 def parseFragment(file, context, namespaces=True):
950 if namespaces:
966 def parseFragmentString(string, context, namespaces=True):
971 if namespaces:
980 if options.namespaces: