File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,16 +170,16 @@ PyDoc_STRVAR(brotli_Decompressor_is_finished_doc,
170170" False otherwise\n" );
171171PyDoc_STRVAR (brotli_Decompressor_can_accept_more_data_doc ,
172172"Checks if the decoder instance can accept more compressed data.\n"
173- "If the 'decompress ()' method on this instance of decompressor was never\n"
173+ "If the 'process ()' method on this instance of decompressor was never\n"
174174"called with 'max_length', this method will always return True.\n"
175175"\n"
176176"Signature:"
177177" can_accept_more_data() -> bool\n"
178178"\n"
179179"Returns:\n"
180180" True if the decoder is ready to accept more compressed data via\n"
181- " 'decompress ()'\n"
182- " False if the decoder needs to output some data via 'decompress (b'')'\n"
181+ " 'process ()'\n"
182+ " False if the decoder needs to output some data via 'process (b'')'\n"
183183" before being provided any more compressed data\n" );
184184PyDoc_STRVAR (brotli_decompress__doc__ ,
185185"Decompress a compressed byte string.\n"
You can’t perform that action at this time.
0 commit comments