summaryrefslogtreecommitdiffstats
path: root/Doc/library/gzip.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/gzip.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/gzip.rst')
-rw-r--r--Doc/library/gzip.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst
index 2cbd2d5..8a7c928 100644
--- a/Doc/library/gzip.rst
+++ b/Doc/library/gzip.rst
@@ -62,7 +62,7 @@ The module defines the following items:
value.
The new class instance is based on *fileobj*, which can be a regular file, a
- :class:`StringIO` object, or any other object which simulates a file. It
+ :class:`io.BytesIO` object, or any other object which simulates a file. It
defaults to ``None``, in which case *filename* is opened to provide a file
object.