diff -r 6204fc81a291 -r 8060257fd918 rust/hg-cpython/src/revlog.rs --- a/rust/hg-cpython/src/revlog.rs Wed Sep 25 17:11:32 2024 +0200 +++ b/rust/hg-cpython/src/revlog.rs Thu Sep 26 00:50:21 2024 +0200 @@ -333,12 +333,6 @@ Ok(rust_res) } - /// get filtered head revisions - def headrevsfiltered(&self, *args, **_kw) -> PyResult { - let rust_res = self.inner_headrevsfiltered(py, &args.get_item(py, 0))?; - Ok(rust_res) - } - /// True if the object is a snapshot def issnapshot(&self, *args, **_kw) -> PyResult { let index = self.index(py).borrow();