diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-16 21:09:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-16 21:09:55 (GMT) |
commit | e79be877df9a08d156f58050b303b5cab9142856 (patch) | |
tree | 2784e56d21c0b1aaa23220b87c96d644a4f10998 /Doc/library/xml.dom.minidom.rst | |
parent | ec34ab501025f7fd677e0f6b8a8d0c9f960f069f (diff) | |
download | cpython-e79be877df9a08d156f58050b303b5cab9142856.zip cpython-e79be877df9a08d156f58050b303b5cab9142856.tar.gz cpython-e79be877df9a08d156f58050b303b5cab9142856.tar.bz2 |
Issue #18743: Fix references to non-existant "StringIO" module.
Diffstat (limited to 'Doc/library/xml.dom.minidom.rst')
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index e90c177..5d821f1 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -55,7 +55,7 @@ instead: .. function:: parseString(string, parser=None) Return a :class:`Document` that represents the *string*. This method creates a - :class:`StringIO` object for the string and passes that on to :func:`parse`. + :class:`io.StringIO` object for the string and passes that on to :func:`parse`. Both functions return a :class:`Document` object representing the content of the document. |