rust/hg-cpython/src/dirstate/item.rs
changeset 48142 fb3b41d583c2
parent 48139 ab5a7fdbf75c
child 48143 21542d4cb568
--- a/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 02:01:12 2021 +0200
+++ b/rust/hg-cpython/src/dirstate/item.rs	Fri Oct 01 04:04:09 2021 +0200
@@ -71,6 +71,12 @@
         Ok(self.entry(py).get().added())
     }
 
+
+    @property
+    def p2_info(&self) -> PyResult<bool> {
+        Ok(self.entry(py).get().p2_info())
+    }
+
     @property
     def merged(&self) -> PyResult<bool> {
         Ok(self.entry(py).get().merged())