Fix empty strings to empty bytes objects.

This commit is contained in:
Serhiy Storchaka 2014-02-06 21:10:41 +02:00
parent 07fbd78473
commit 5e028ae09e
5 changed files with 11 additions and 10 deletions

View file

@ -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.