mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix empty strings to empty bytes objects.
This commit is contained in:
parent
07fbd78473
commit
5e028ae09e
5 changed files with 11 additions and 10 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue