Searched refs:parser_list (Results 1 – 7 of 7) sorted by relevance
65 def get_parser(parser_list, keyword): argument66 for p in parser_list:72 def parse_test(parser_list): argument75 additional_parsers=parser_list, require_script=False)
66 def get_parser(parser_list, keyword): argument67 for p in parser_list:73 def parse_test(parser_list): argument76 additional_parsers=parser_list, require_script=False)
71 def make_parser(parser_list = []): argument79 for parser_name in parser_list + default_parser_list:
70 def make_parser(parser_list=()): argument78 for parser_name in list(parser_list) + default_parser_list:
39 .. function:: make_parser(parser_list=[])43 be used. If *parser_list* is provided, it must be an iterable of strings which45 in *parser_list* will be used before modules in the default list of parsers.48 The *parser_list* argument can be any iterable, not just a list.
30 .. function:: make_parser([parser_list])34 be used. If *parser_list* is provided, it must be a sequence of strings which36 in *parser_list* will be used before modules in the default list of parsers.
3012 :func:`xml.sax.make_parser` now accepts any iterable as its *parser_list*