comparison rust/hg-cpython/src/dirstate.rs @ 44839:01afda7e7d6c

rust-hg-cpython: update status bridge with the new `traversedir` support Differential Revision: https://phab.mercurial-scm.org/D8519
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 12 May 2020 11:37:55 +0200
parents 82f51ab7a2dd
children 2a68a5ec8dd0
comparison
equal deleted inserted replaced
44838:c802ec4f7196 44839:01afda7e7d6c
131 ignorefiles: PyList, 131 ignorefiles: PyList,
132 check_exec: bool, 132 check_exec: bool,
133 last_normal_time: i64, 133 last_normal_time: i64,
134 list_clean: bool, 134 list_clean: bool,
135 list_ignored: bool, 135 list_ignored: bool,
136 list_unknown: bool 136 list_unknown: bool,
137 collect_traversed_dirs: bool
137 ) 138 )
138 ), 139 ),
139 )?; 140 )?;
140 141
141 let sys = PyModule::import(py, "sys")?; 142 let sys = PyModule::import(py, "sys")?;