##// END OF EJS Templates
diffutil: move the module out of utils package...
Yuya Nishihara -
r38607:1c93e023 @70 default
parent child Browse files
Show More
@@ -54,6 +54,7 b' from mercurial.node import ('
54 )
54 )
55 from mercurial import (
55 from mercurial import (
56 context,
56 context,
57 diffutil,
57 error,
58 error,
58 hg,
59 hg,
59 patch,
60 patch,
@@ -62,7 +63,6 b' from mercurial import ('
62 )
63 )
63 from mercurial.utils import (
64 from mercurial.utils import (
64 dateutil,
65 dateutil,
65 diffutil,
66 )
66 )
67
67
68 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
68 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
@@ -9,9 +9,9 b''
9
9
10 from __future__ import absolute_import
10 from __future__ import absolute_import
11
11
12 from ..i18n import _
12 from .i18n import _
13
13
14 from .. import (
14 from . import (
15 mdiff,
15 mdiff,
16 pycompat,
16 pycompat,
17 )
17 )
@@ -25,6 +25,7 b' from .common import ('
25
25
26 from .. import (
26 from .. import (
27 context,
27 context,
28 diffutil,
28 error,
29 error,
29 match,
30 match,
30 mdiff,
31 mdiff,
@@ -41,7 +42,6 b' from .. import ('
41 )
42 )
42
43
43 from ..utils import (
44 from ..utils import (
44 diffutil,
45 stringutil,
45 stringutil,
46 )
46 )
47
47
@@ -11,13 +11,13 b' import re'
11
11
12 from .i18n import _
12 from .i18n import _
13 from . import (
13 from . import (
14 diffutil,
14 node as nodemod,
15 node as nodemod,
15 phases,
16 phases,
16 util,
17 util,
17 )
18 )
18 from .utils import (
19 from .utils import (
19 dateutil,
20 dateutil,
20 diffutil,
21 )
21 )
22
22
23 ### obsolescence marker flag
23 ### obsolescence marker flag
@@ -28,6 +28,7 b' from .node import ('
28 from . import (
28 from . import (
29 copies,
29 copies,
30 diffhelper,
30 diffhelper,
31 diffutil,
31 encoding,
32 encoding,
32 error,
33 error,
33 mail,
34 mail,
@@ -41,7 +42,6 b' from . import ('
41 )
42 )
42 from .utils import (
43 from .utils import (
43 dateutil,
44 dateutil,
44 diffutil,
45 procutil,
45 procutil,
46 stringutil,
46 stringutil,
47 )
47 )
@@ -13,6 +13,7 b' from .i18n import _'
13 from . import (
13 from . import (
14 dagop,
14 dagop,
15 destutil,
15 destutil,
16 diffutil,
16 encoding,
17 encoding,
17 error,
18 error,
18 hbisect,
19 hbisect,
@@ -33,7 +34,6 b' from . import ('
33 )
34 )
34 from .utils import (
35 from .utils import (
35 dateutil,
36 dateutil,
36 diffutil,
37 stringutil,
37 stringutil,
38 )
38 )
39
39
@@ -14,6 +14,7 b' from .node import ('
14 )
14 )
15
15
16 from . import (
16 from . import (
17 diffutil,
17 encoding,
18 encoding,
18 error,
19 error,
19 hbisect,
20 hbisect,
@@ -27,7 +28,6 b' from . import ('
27 util,
28 util,
28 )
29 )
29 from .utils import (
30 from .utils import (
30 diffutil,
31 stringutil,
31 stringutil,
32 )
32 )
33
33
@@ -5,12 +5,12 b' import sys'
5 from mercurial.node import hex
5 from mercurial.node import hex
6 from mercurial import (
6 from mercurial import (
7 context,
7 context,
8 diffutil,
8 encoding,
9 encoding,
9 hg,
10 hg,
10 scmutil,
11 scmutil,
11 ui as uimod,
12 ui as uimod,
12 )
13 )
13 from mercurial.utils import diffutil
14
14
15 print_ = print
15 print_ = print
16 def print(*args, **kwargs):
16 def print(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now