rust/hg-cpython/src/dagops.rs
changeset 42557 d26e4a434fe5
parent 41694 0c7b353ce100
child 42609 326fdce22fb2
equal deleted inserted replaced
42553:e3df1e15bee9 42557:d26e4a434fe5
     7 
     7 
     8 //! Bindings for the `hg::dagops` module provided by the
     8 //! Bindings for the `hg::dagops` module provided by the
     9 //! `hg-core` package.
     9 //! `hg-core` package.
    10 //!
    10 //!
    11 //! From Python, this will be seen as `mercurial.rustext.dagop`
    11 //! From Python, this will be seen as `mercurial.rustext.dagop`
       
    12 use crate::conversion::{py_set, rev_pyiter_collect};
    12 use cindex::Index;
    13 use cindex::Index;
    13 use cpython::{PyDict, PyModule, PyObject, PyResult, Python};
    14 use cpython::{PyDict, PyModule, PyObject, PyResult, Python};
    14 use crate::conversion::{py_set, rev_pyiter_collect};
       
    15 use exceptions::GraphError;
    15 use exceptions::GraphError;
    16 use hg::dagops;
    16 use hg::dagops;
    17 use hg::Revision;
    17 use hg::Revision;
    18 use std::collections::HashSet;
    18 use std::collections::HashSet;
    19 
    19