Show More
@@ -5,11 +5,24 | |||||
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | from node import nullid |
|
8 | from __future__ import absolute_import | |
9 | from i18n import _ |
|
9 | ||
10 | import scmutil, util, osutil, parsers, encoding, pathutil, error |
|
10 | import errno | |
11 | import os, stat, errno |
|
11 | import os | |
12 | import match as matchmod |
|
12 | import stat | |
|
13 | ||||
|
14 | from .i18n import _ | |||
|
15 | from .node import nullid | |||
|
16 | from . import ( | |||
|
17 | encoding, | |||
|
18 | error, | |||
|
19 | match as matchmod, | |||
|
20 | osutil, | |||
|
21 | parsers, | |||
|
22 | pathutil, | |||
|
23 | scmutil, | |||
|
24 | util, | |||
|
25 | ) | |||
13 |
|
26 | |||
14 | propertycache = util.propertycache |
|
27 | propertycache = util.propertycache | |
15 | filecache = scmutil.filecache |
|
28 | filecache = scmutil.filecache |
@@ -102,7 +102,6 | |||||
102 | mercurial/cmdutil.py not using absolute_import |
|
102 | mercurial/cmdutil.py not using absolute_import | |
103 | mercurial/commands.py not using absolute_import |
|
103 | mercurial/commands.py not using absolute_import | |
104 | mercurial/context.py not using absolute_import |
|
104 | mercurial/context.py not using absolute_import | |
105 | mercurial/dirstate.py not using absolute_import |
|
|||
106 | mercurial/dispatch.py requires print_function |
|
105 | mercurial/dispatch.py requires print_function | |
107 | mercurial/exchange.py not using absolute_import |
|
106 | mercurial/exchange.py not using absolute_import | |
108 | mercurial/httpclient/__init__.py not using absolute_import |
|
107 | mercurial/httpclient/__init__.py not using absolute_import |
General Comments 0
You need to be logged in to leave comments.
Login now