From 62f484877c9ee09b44ab9a333556a1187865804a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Fri, 26 Oct 2018 10:12:02 -0300 Subject: [PATCH] [3.7] bpo-34789: xml.sax.make_parser expects a list not just any sequence (GH-9542) (cherry picked from commit 1487b651caa62647f8f8c9e8432e475e3566130c) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andrés Delfino --- Doc/library/xml.sax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/xml.sax.rst b/Doc/library/xml.sax.rst index 25e4fa903246d3..9ec96967094e32 100644 --- a/Doc/library/xml.sax.rst +++ b/Doc/library/xml.sax.rst @@ -31,7 +31,7 @@ The convenience functions are: Create and return a SAX :class:`~xml.sax.xmlreader.XMLReader` object. The first parser found will - be used. If *parser_list* is provided, it must be a sequence of strings which + be used. If *parser_list* is provided, it must be a list of strings which name modules that have a function named :func:`create_parser`. Modules listed in *parser_list* will be used before modules in the default list of parsers.