diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-09-01 14:08:38 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-09-01 14:08:38 (GMT) |
commit | c1c956b281d05aac032b5f52c5d374de33bca26b (patch) | |
tree | 2a8b90a80b2cc02fd330fa3681a510383c5ddd49 /Doc | |
parent | 78a78b0768478f19acf979e7d55e1e01345e6fa5 (diff) | |
download | cpython-c1c956b281d05aac032b5f52c5d374de33bca26b.zip cpython-c1c956b281d05aac032b5f52c5d374de33bca26b.tar.gz cpython-c1c956b281d05aac032b5f52c5d374de33bca26b.tar.bz2 |
Remove statement about meaning of constants; arguably it's incorrect
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libzlib.tex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/lib/libzlib.tex b/Doc/lib/libzlib.tex index 03e56f4..2df8b85 100644 --- a/Doc/lib/libzlib.tex +++ b/Doc/lib/libzlib.tex @@ -115,8 +115,7 @@ All pending input is processed, and a string containing the remaining compressed output is returned. \var{mode} can be selected from the constants \constant{Z_SYNC_FLUSH}, \constant{Z_FULL_FLUSH}, or \constant{Z_FINISH}, defaulting to \constant{Z_FINISH}. \constant{Z_SYNC_FLUSH} and -\constant{Z_FULL_FLUSH} allow compressing further strings of data and -are used to allow partial error recovery on decompression, while +\constant{Z_FULL_FLUSH} allow compressing further strings of data, while \constant{Z_FINISH} finishes the compressed stream and prevents compressing any more data. After calling \method{flush()} with \var{mode} set to \constant{Z_FINISH}, the |