Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 52416: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 | f2fc0a91faca |
children | c97e0fd26225 |
comparison
equal
deleted
inserted
replaced
52415:4eec920bbb37 | 52416:0a81f3ef054c |
---|---|
50 obsolete, | 50 obsolete, |
51 obsutil, | 51 obsutil, |
52 patch, | 52 patch, |
53 phases, | 53 phases, |
54 pycompat, | 54 pycompat, |
55 rcutil, | |
56 registrar, | 55 registrar, |
57 requirements, | 56 requirements, |
58 revsetlang, | 57 revsetlang, |
59 rewriteutil, | 58 rewriteutil, |
60 scmutil, | 59 scmutil, |
68 vfs as vfsmod, | 67 vfs as vfsmod, |
69 wireprotoserver, | 68 wireprotoserver, |
70 ) | 69 ) |
71 | 70 |
72 from .cmd_impls import graft as graft_impl | 71 from .cmd_impls import graft as graft_impl |
73 | 72 from .configuration import rcutil |
74 from .utils import ( | 73 from .utils import ( |
75 dateutil, | 74 dateutil, |
76 procutil, | 75 procutil, |
77 stringutil, | 76 stringutil, |
78 urlutil, | 77 urlutil, |