diff mercurial/dirstate.py @ 48044:d5528ac9b4f2

dirstate: Use the Rust implementation of DirstateItem when Rust is enabled … instead of the C implementation, with C/Rust conversions at the FFI boundary Differential Revision: https://phab.mercurial-scm.org/D11486
author Simon Sapin <simon.sapin@octobus.net>
date Wed, 22 Sep 2021 11:33:29 +0200
parents a83e24c3af6b
children 84e7a86e3a63
line wrap: on
line diff
--- a/mercurial/dirstate.py	Wed Sep 22 11:28:52 2021 +0200
+++ b/mercurial/dirstate.py	Wed Sep 22 11:33:29 2021 +0200
@@ -45,7 +45,7 @@
 filecache = scmutil.filecache
 _rangemask = dirstatemap.rangemask
 
-DirstateItem = parsers.DirstateItem
+DirstateItem = dirstatemap.DirstateItem
 
 
 class repocache(filecache):