Show More
@@ -5,9 +5,20 b'' | |||
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | from i18n import _ | |
|
9 | import bdiff, mpatch, util, base85, error | |
|
10 | import re, struct, zlib | |
|
8 | from __future__ import absolute_import | |
|
9 | ||
|
10 | import re | |
|
11 | import struct | |
|
12 | import zlib | |
|
13 | ||
|
14 | from .i18n import _ | |
|
15 | from . import ( | |
|
16 | base85, | |
|
17 | bdiff, | |
|
18 | error, | |
|
19 | mpatch, | |
|
20 | util, | |
|
21 | ) | |
|
11 | 22 | |
|
12 | 23 | def splitnewlines(text): |
|
13 | 24 | '''like str.splitlines, but only split on newlines.''' |
@@ -117,7 +117,6 b'' | |||
|
117 | 117 | mercurial/lsprofcalltree.py requires print_function |
|
118 | 118 | mercurial/mail.py requires print_function |
|
119 | 119 | mercurial/manifest.py not using absolute_import |
|
120 | mercurial/mdiff.py not using absolute_import | |
|
121 | 120 | mercurial/patch.py not using absolute_import |
|
122 | 121 | mercurial/pvec.py not using absolute_import |
|
123 | 122 | mercurial/py3kcompat.py not using absolute_import |
General Comments 0
You need to be logged in to leave comments.
Login now