Home | History | Annotate | Download | only in dom

Lines Matching full:namespaces

389     # If this ever changes, Namespaces.end_element_handler() needs to
711 class Namespaces:
712 """Mix-in class for builders; adds support for namespaces."""
806 class ExpatBuilderNS(Namespaces, ExpatBuilder):
807 """Document builder that supports namespaces."""
814 class FragmentBuilderNS(Namespaces, FragmentBuilder):
815 """Fragment builder that supports namespaces."""
899 def parse(file, namespaces=True):
904 if namespaces:
917 def parseString(string, namespaces=True):
921 if namespaces:
928 def parseFragment(file, context, namespaces=True):
935 if namespaces:
948 def parseFragmentString(string, context, namespaces=True):
953 if namespaces:
962 if options.namespaces: