summaryrefslogtreecommitdiffstats
path: root/Doc/library/zlib.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-06 19:10:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-06 19:10:41 (GMT)
commit5e028ae09e3181a1bebc402a9a414b8a79845090 (patch)
tree174f4aea9af25e3f583f41a1f07e8945f14da955 /Doc/library/zlib.rst
parent07fbd7847356c704ef30f9a4230a60281422dd39 (diff)
downloadcpython-5e028ae09e3181a1bebc402a9a414b8a79845090.zip
cpython-5e028ae09e3181a1bebc402a9a414b8a79845090.tar.gz
cpython-5e028ae09e3181a1bebc402a9a414b8a79845090.tar.bz2
Fix empty strings to empty bytes objects.
Diffstat (limited to 'Doc/library/zlib.rst')
-rw-r--r--Doc/library/zlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst
index d9a29a8..b178fe1 100644
--- a/Doc/library/zlib.rst
+++ b/Doc/library/zlib.rst
@@ -197,7 +197,7 @@ Decompression objects support the following methods and attributes:
.. attribute:: Decompress.unused_data
A bytes object which contains any bytes past the end of the compressed data. That is,
- this remains ``""`` until the last byte that contains compression data is
+ this remains ``b""`` until the last byte that contains compression data is
available. If the whole bytestring turned out to contain compressed data, this is
``b""``, an empty bytes object.