summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-26 13:27:15 (GMT)
committerGitHub <noreply@github.com>2018-10-26 13:27:15 (GMT)
commit38d7620baab96c702243cfa193377a38888ec10f (patch)
tree606ed315fbb1af1b7799f3ab35429efe8e22247d /Doc/library
parente825b4e1a9bbe1d4c561f4cbbe6857653ef13a15 (diff)
downloadcpython-38d7620baab96c702243cfa193377a38888ec10f.zip
cpython-38d7620baab96c702243cfa193377a38888ec10f.tar.gz
cpython-38d7620baab96c702243cfa193377a38888ec10f.tar.bz2
[3.7] bpo-34789: xml.sax.make_parser expects a list not just any sequence (GH-9542)
(cherry picked from commit 1487b651caa62647f8f8c9e8432e475e3566130c) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/xml.sax.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.sax.rst b/Doc/library/xml.sax.rst
index 1a8f183..254b539 100644
--- a/Doc/library/xml.sax.rst
+++ b/Doc/library/xml.sax.rst
@@ -40,7 +40,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.