kevincox accepted this revision.
kevincox added inline comments.

INLINE COMMENTS

> ancestors.rs:108
> +                Err(e) => {
> +                    return Err(GraphError::new(py, format!("{:?}", e)));
> +                }

.map_err(|e| GraphError::new(py, format!("{:?}", e)))

Or even better is to implement `Into` so that you can use `?`

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D5441

To: gracinet, #hg-reviewers, kevincox
Cc: yuja, durin42, kevincox, mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to