diff -r 55d280bc59fa -r 9d1a8829f959 rust/hg-cpython/src/revlog.rs --- a/rust/hg-cpython/src/revlog.rs Tue May 04 11:19:48 2021 +0200 +++ b/rust/hg-cpython/src/revlog.rs Tue May 04 14:16:26 2021 +0200 @@ -300,6 +300,11 @@ self.cindex(py).borrow().inner().getattr(py, "entry_size")?.extract::(py) } + @property + def rust_ext_compat(&self) -> PyResult { + self.cindex(py).borrow().inner().getattr(py, "rust_ext_compat")?.extract::(py) + } + }); impl MixedIndex {