rust/hg-cpython/src/dirstate/item.rs
changeset 48162 d71feb05d5b6
parent 48155 21542d4cb568
child 48165 c29d312657d2
equal deleted inserted replaced
48161:6ac2b417d5d7 48162:d71feb05d5b6
    91     def removed(&self) -> PyResult<bool> {
    91     def removed(&self) -> PyResult<bool> {
    92         Ok(self.entry(py).get().removed())
    92         Ok(self.entry(py).get().removed())
    93     }
    93     }
    94 
    94 
    95     @property
    95     @property
    96     def from_p2(&self) -> PyResult<bool> {
       
    97         Ok(self.entry(py).get().from_p2())
       
    98     }
       
    99 
       
   100     @property
       
   101     def maybe_clean(&self) -> PyResult<bool> {
    96     def maybe_clean(&self) -> PyResult<bool> {
   102         Ok(self.entry(py).get().maybe_clean())
    97         Ok(self.entry(py).get().maybe_clean())
   103     }
    98     }
   104 
    99 
   105     @property
   100     @property