diff mercurial/localrepo.py @ 52447:0a81f3ef054c

config: move `rcutil` module under a new `mercurial.configuration` module This new module aims at gathering configuration related code, rcutil definitely deserves to live there.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 21 Oct 2024 13:39:44 +0200
parents 513b413702e8
children ef119f914fc1
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu Dec 05 18:07:55 2024 +0100
+++ b/mercurial/localrepo.py	Mon Oct 21 13:39:44 2024 +0200
@@ -59,7 +59,6 @@
     policy,
     pushkey,
     pycompat,
-    rcutil,
     repoview,
     requirements as requirementsmod,
     revlog,
@@ -80,7 +79,7 @@
 from .branching import (
     rev_cache as rev_branch_cache,
 )
-
+from .configuration import rcutil
 from .interfaces import (
     repository,
 )