changeset 43456 | ab9b0a20b9e6 |
parent 43273 | 478d0b1bf0c5 |
child 43916 | 6a88ced33c40 |
43455:6792da448437 | 43456:ab9b0a20b9e6 |
---|---|
15 mod status; |
15 mod status; |
16 use crate::dirstate::{ |
16 use crate::dirstate::{ |
17 dirs_multiset::Dirs, dirstate_map::DirstateMap, status::status_wrapper, |
17 dirs_multiset::Dirs, dirstate_map::DirstateMap, status::status_wrapper, |
18 }; |
18 }; |
19 use cpython::{ |
19 use cpython::{ |
20 exc, PyBytes, PyDict, PyErr, PyList, PyModule, PyObject, PyResult, |
20 exc, PyBytes, PyDict, PyErr, PyModule, PyObject, PyResult, PySequence, |
21 PySequence, Python, |
21 Python, |
22 }; |
22 }; |
23 use hg::{ |
23 use hg::{ |
24 utils::hg_path::HgPathBuf, DirstateEntry, DirstateParseError, EntryState, |
24 utils::hg_path::HgPathBuf, DirstateEntry, DirstateParseError, EntryState, |
25 StateMap, |
25 StateMap, |
26 }; |
26 }; |
114 py_fn!( |
114 py_fn!( |
115 py, |
115 py, |
116 status_wrapper( |
116 status_wrapper( |
117 dmap: DirstateMap, |
117 dmap: DirstateMap, |
118 root_dir: PyObject, |
118 root_dir: PyObject, |
119 files: PyList, |
|
120 list_clean: bool, |
119 list_clean: bool, |
121 last_normal_time: i64, |
120 last_normal_time: i64, |
122 check_exec: bool |
121 check_exec: bool |
123 ) |
122 ) |
124 ), |
123 ), |