summaryrefslogtreecommitdiff
path: root/Doc/library/gzip.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-17 00:09:55 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-17 00:09:55 +0300
commitef98b31897e2fcd8ea3991215def590a90fe3b1c (patch)
tree05d54472fa0d6a0bf4ac2e8ca5bac6ac37430660 /Doc/library/gzip.rst
parenta9a4ac217e58ba0e4244ba4e20f466f6db6accf5 (diff)
downloadcpython-ef98b31897e2fcd8ea3991215def590a90fe3b1c.tar.gz
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 2cbd2d5f5b..8a7c928d67 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.