summaryrefslogtreecommitdiffstats
path: root/Doc/library/tempfile.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-16 21:09:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-16 21:09:55 (GMT)
commite79be877df9a08d156f58050b303b5cab9142856 (patch)
tree2784e56d21c0b1aaa23220b87c96d644a4f10998 /Doc/library/tempfile.rst
parentec34ab501025f7fd677e0f6b8a8d0c9f960f069f (diff)
downloadcpython-e79be877df9a08d156f58050b303b5cab9142856.zip
cpython-e79be877df9a08d156f58050b303b5cab9142856.tar.gz
cpython-e79be877df9a08d156f58050b303b5cab9142856.tar.bz2
Issue #18743: Fix references to non-existant "StringIO" module.
Diffstat (limited to 'Doc/library/tempfile.rst')
-rw-r--r--Doc/library/tempfile.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst
index 2ea6323..13b6041 100644
--- a/Doc/library/tempfile.rst
+++ b/Doc/library/tempfile.rst
@@ -82,7 +82,7 @@ The module defines the following user-callable items:
causes the file to roll over to an on-disk file regardless of its size.
The returned object is a file-like object whose :attr:`_file` attribute
- is either a :class:`BytesIO` or :class:`StringIO` object (depending on
+ is either a :class:`io.BytesIO` or :class:`io.StringIO` object (depending on
whether binary or text *mode* was specified) or a true file
object, depending on whether :func:`rollover` has been called. This
file-like object can be used in a :keyword:`with` statement, just like