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 181e53d commit 8786cdeCopy full SHA for 8786cde
rust-ext/src/compressor_iterator.rs
@@ -60,7 +60,7 @@ impl ZstdCompressorIterator {
60
// TODO avoid buffer copy
61
let chunk = PyBytes::new(py, &dest_buffer);
62
63
- return Ok(Some(chunk.into_py(py)));
+ return Ok(Some(chunk.into_pyobject(py)));
64
}
65
66
// Else read another chunk in hopes of producing output data.
@@ -94,7 +94,7 @@ impl ZstdCompressorIterator {
94
// TODO avoid buffer copy.
95
96
97
98
99
100
Ok(None)
0 commit comments