From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 22 Feb 2019 00:45:31 +0000 (-0800) Subject: bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903) X-Git-Tag: v3.7.3rc1~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b046f1badaaffb7e526b937fa2192c449b9076ed;p=thirdparty%2FPython%2Fcpython.git bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903) (cherry picked from commit e5458bdb6af81f9b98acecd8819c60016d3f1441) Co-authored-by: Manjusaka --- 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)