We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684d635 commit 3f9ff46Copy full SHA for 3f9ff46
1 file changed
rust-ext/src/compression_chunker.rs
@@ -225,7 +225,7 @@ impl ZstdCompressionChunkerIterator {
225
let chunk = PyBytes::new(py, &slf.dest_buffer);
226
slf.dest_buffer.clear();
227
228
- return Ok(Some(chunk.into_py(py)));
+ return Ok(Some(chunk.into_pyobject(py)));
229
}
230
231
// Else continue to compress available input data.
@@ -278,6 +278,6 @@ impl ZstdCompressionChunkerIterator {
278
279
280
281
- Ok(Some(chunk.into_py(py)))
+ Ok(Some(chunk.into_pyobject(py)))
282
283
0 commit comments