Mercurial > hg
changeset 44070:451d22174b5f
revlog: run rustfmt nightly
I'm a little nervous about folding this back (might be nightly rustfmt
mismatches?) so I want someone to review this.
Differential Revision: https://phab.mercurial-scm.org/D7813
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 08 Jan 2020 14:37:54 -0500 |
parents | 5e0505d36aee |
children | 34e8305f02bd |
files | rust/hg-cpython/src/revlog.rs |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/rust/hg-cpython/src/revlog.rs Wed Jan 08 14:37:01 2020 -0500 +++ b/rust/hg-cpython/src/revlog.rs Wed Jan 08 14:37:54 2020 -0500 @@ -7,14 +7,17 @@ use crate::cindex; use cpython::{ - ObjectProtocol, PyClone, PyDict, PyModule, PyObject, PyResult, PyTuple, Python, PythonObject, - ToPyObject, + ObjectProtocol, PyClone, PyDict, PyModule, PyObject, PyResult, PyTuple, + Python, PythonObject, ToPyObject, }; use hg::Revision; use std::cell::RefCell; /// Return a Struct implementing the Graph trait -pub(crate) fn pyindex_to_graph(py: Python, index: PyObject) -> PyResult<cindex::Index> { +pub(crate) fn pyindex_to_graph( + py: Python, + index: PyObject, +) -> PyResult<cindex::Index> { match index.extract::<MixedIndex>(py) { Ok(midx) => Ok(midx.clone_cindex(py)), Err(_) => cindex::Index::new(py, index),