Comments
Patch
@@ -1092,11 +1092,14 @@
dmap.preload()
use_rust = True
+
+ allowed_matchers = (matchmod.alwaysmatcher, matchmod.exactmatcher)
+
if rustmod is None:
use_rust = False
elif subrepos:
use_rust = False
- if bool(listunknown):
+ elif bool(listunknown):
# Pathauditor does not exist yet in Rust, unknown files
# can't be trusted.
use_rust = False
@@ -1104,7 +1107,7 @@
# Rust has no ignore mechanism yet, so don't use Rust for
# commands that need ignore.
use_rust = False
- elif not match.always():
+ elif not isinstance(match, allowed_matchers):
# Matchers have yet to be implemented
use_rust = False
@@ -1132,6 +1135,7 @@
clean,
) = rustmod.status(
dmap._rustmap,
+ match,
self._rootdir,
bool(listclean),
self._lastnormaltime,