comparison 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
comparison
equal deleted inserted replaced
52446:4eec920bbb37 52447:0a81f3ef054c
57 pathutil, 57 pathutil,
58 phases, 58 phases,
59 policy, 59 policy,
60 pushkey, 60 pushkey,
61 pycompat, 61 pycompat,
62 rcutil,
63 repoview, 62 repoview,
64 requirements as requirementsmod, 63 requirements as requirementsmod,
65 revlog, 64 revlog,
66 revset, 65 revset,
67 revsetlang, 66 revsetlang,
78 ) 77 )
79 78
80 from .branching import ( 79 from .branching import (
81 rev_cache as rev_branch_cache, 80 rev_cache as rev_branch_cache,
82 ) 81 )
83 82 from .configuration import rcutil
84 from .interfaces import ( 83 from .interfaces import (
85 repository, 84 repository,
86 ) 85 )
87 86
88 from .utils import ( 87 from .utils import (