diff -r 7a8c9869e4fe -r b2af515b4faf rust/hg-cpython/src/dirstate/item.rs --- a/rust/hg-cpython/src/dirstate/item.rs Fri Oct 01 09:12:52 2021 +0200 +++ b/rust/hg-cpython/src/dirstate/item.rs Fri Oct 01 09:14:10 2021 +0200 @@ -145,12 +145,6 @@ } @classmethod - def new_merged(_cls) -> PyResult { - let entry = DirstateEntry::new_merged(); - DirstateItem::create_instance(py, Cell::new(entry)) - } - - @classmethod def new_from_p2(_cls) -> PyResult { let entry = DirstateEntry::new_from_p2(); DirstateItem::create_instance(py, Cell::new(entry))