equal
deleted
inserted
replaced
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> { |