rust/hg-cpython/src/revlog.rs
changeset 51964 8060257fd918
parent 51962 fb4d49c52c06
child 51966 e5dcaf6d4ac0
equal deleted inserted replaced
51963:6204fc81a291 51964:8060257fd918
   328     def headrevsdiff(&self, *args, **_kw) -> PyResult<PyObject> {
   328     def headrevsdiff(&self, *args, **_kw) -> PyResult<PyObject> {
   329         let rust_res = self.inner_headrevsdiff(
   329         let rust_res = self.inner_headrevsdiff(
   330           py,
   330           py,
   331           &args.get_item(py, 0),
   331           &args.get_item(py, 0),
   332           &args.get_item(py, 1))?;
   332           &args.get_item(py, 1))?;
   333         Ok(rust_res)
       
   334     }
       
   335 
       
   336     /// get filtered head revisions
       
   337     def headrevsfiltered(&self, *args, **_kw) -> PyResult<PyObject> {
       
   338         let rust_res = self.inner_headrevsfiltered(py, &args.get_item(py, 0))?;
       
   339         Ok(rust_res)
   333         Ok(rust_res)
   340     }
   334     }
   341 
   335 
   342     /// True if the object is a snapshot
   336     /// True if the object is a snapshot
   343     def issnapshot(&self, *args, **_kw) -> PyResult<bool> {
   337     def issnapshot(&self, *args, **_kw) -> PyResult<bool> {