diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 21:42:46 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 21:42:46 (GMT) |
commit | 0158af38b73b76516f18b1774e1c590f459cb188 (patch) | |
tree | 7a74dea12c9b01169cfe65820a2b7662df2ee2b0 /Modules/zlib | |
parent | 65e69b37183eb0172b9fbbf28388ff0b0d05b792 (diff) | |
download | cpython-0158af38b73b76516f18b1774e1c590f459cb188.zip cpython-0158af38b73b76516f18b1774e1c590f459cb188.tar.gz cpython-0158af38b73b76516f18b1774e1c590f459cb188.tar.bz2 |
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Modules/zlib')
-rw-r--r-- | Modules/zlib/deflate.c | 4 | ||||
-rw-r--r-- | Modules/zlib/inftrees.h | 2 | ||||
-rw-r--r-- | Modules/zlib/zlib.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Modules/zlib/deflate.c b/Modules/zlib/deflate.c index 5c4022f..bcef67c 100644 --- a/Modules/zlib/deflate.c +++ b/Modules/zlib/deflate.c @@ -157,7 +157,7 @@ struct static_tree_desc_s {int dummy;}; /* for buggy compilers */ /* =========================================================================== * Update a hash value with the given input byte - * IN assertion: all calls to to UPDATE_HASH are made with consecutive + * IN assertion: all calls to UPDATE_HASH are made with consecutive * input characters, so that a running hash key can be computed from the * previous key instead of complete recalculation each time. */ @@ -170,7 +170,7 @@ struct static_tree_desc_s {int dummy;}; /* for buggy compilers */ * the previous length of the hash chain. * If this file is compiled with -DFASTEST, the compression level is forced * to 1, and no hash chains are maintained. - * IN assertion: all calls to to INSERT_STRING are made with consecutive + * IN assertion: all calls to INSERT_STRING are made with consecutive * input characters and the first MIN_MATCH bytes of str are valid * (except for the last MIN_MATCH-1 bytes of the input file). */ diff --git a/Modules/zlib/inftrees.h b/Modules/zlib/inftrees.h index baa53a0..24230c5 100644 --- a/Modules/zlib/inftrees.h +++ b/Modules/zlib/inftrees.h @@ -41,7 +41,7 @@ typedef struct { examples/enough.c found in the zlib distribtution. The arguments to that program are the number of symbols, the initial root table size, and the maximum bit length of a code. "enough 286 9 15" for literal/length codes - returns returns 852, and "enough 30 6 15" for distance codes returns 592. + returns 852, and "enough 30 6 15" for distance codes returns 592. The initial root table size (9 or 6) is found in the fifth argument of the inflate_table() calls in inflate.c and infback.c. If the root table size is changed, then these maximum sizes would be need to be recalculated and diff --git a/Modules/zlib/zlib.h b/Modules/zlib/zlib.h index bfbba83..79a187c 100644 --- a/Modules/zlib/zlib.h +++ b/Modules/zlib/zlib.h @@ -812,7 +812,7 @@ ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the - success case, the application may save the current current value of total_in + success case, the application may save the current value of total_in which indicates where valid compressed data was found. In the error case, the application may repeatedly call inflateSync, providing more input each time, until success or end of the input data. |