Skip to content
Snippets Groups Projects
Commit 1cd75e5d authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

rust-pyo3-revlog: delay

parent 14824d62
No related branches found
No related tags found
2 merge requests!1292Draft: 7.0rc preparation,!1203Port all hg-cpython revlog code to Pyo3
......@@ -393,6 +393,17 @@
})
}
fn delay(
slf: &Bound<'_, Self>,
py: Python<'_>,
) -> PyResult<Option<Py<PyBytes>>> {
Self::with_core_write(slf, |_self_ref, mut irl| {
let path = irl.delay().map_err(revlog_error_from_msg)?;
Ok(path
.map(|p| PyBytes::new(py, &get_bytes_from_path(p)).unbind()))
})
}
fn _chunk(
slf: &Bound<'_, Self>,
py: Python<'_>,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment