diff mercurial/dirstatemap.py @ 48233:a32a96079e2d

dirstate-v2: initial Python parser The dirstate-v2 file format should be supported even if Rust extensions are not enabled. This changeset adds parsing code that is not used yet. Differential Revision: https://phab.mercurial-scm.org/D11518
author Simon Sapin <simon.sapin@octobus.net>
date Sun, 03 Oct 2021 13:18:03 +0200
parents e7b5e8ba7cab
children b4f83c9e7905
line wrap: on
line diff
--- a/mercurial/dirstatemap.py	Fri Oct 08 13:15:22 2021 +0200
+++ b/mercurial/dirstatemap.py	Sun Oct 03 13:18:03 2021 +0200
@@ -20,6 +20,7 @@
 
 from .dirstateutils import (
     docket as docketmod,
+    v2,
 )
 
 parsers = policy.importmod('parsers')