From b046f1badaaffb7e526b937fa2192c449b9076ed Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 21 Feb 2019 16:45:31 -0800 Subject: [PATCH] bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903) (cherry picked from commit e5458bdb6af81f9b98acecd8819c60016d3f1441) Co-authored-by: Manjusaka --- Doc/library/xml.etree.elementtree.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 6298f1396ae2..5f799aba994d 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -490,10 +490,12 @@ Functions *elem* is an element tree or an individual element. -.. function:: fromstring(text) +.. function:: fromstring(text, parser=None) Parses an XML section from a string constant. Same as :func:`XML`. *text* - is a string containing XML data. Returns an :class:`Element` instance. + is a string containing XML data. *parser* is an optional parser instance. + If not given, the standard :class:`XMLParser` parser is used. + Returns an :class:`Element` instance. .. function:: fromstringlist(sequence, parser=None) -- 2.47.3