Show More
@@ -8,12 +8,20 b'' | |||||
8 | # This software may be used and distributed according to the terms of the |
|
8 | # This software may be used and distributed according to the terms of the | |
9 | # GNU General Public License version 2 or any later version. |
|
9 | # GNU General Public License version 2 or any later version. | |
10 |
|
10 | |||
|
11 | from __future__ import absolute_import | |||
|
12 | ||||
11 | import collections |
|
13 | import collections | |
12 | import os |
|
14 | import os | |
13 | import error |
|
15 | ||
14 | from i18n import _ |
|
16 | from .i18n import _ | |
15 |
from node import |
|
17 | from .node import ( | |
16 | import util |
|
18 | hex, | |
|
19 | short, | |||
|
20 | ) | |||
|
21 | from . import ( | |||
|
22 | error, | |||
|
23 | util, | |||
|
24 | ) | |||
17 |
|
25 | |||
18 | def bisect(changelog, state): |
|
26 | def bisect(changelog, state): | |
19 | """find the next node (if any) for testing during a bisect search. |
|
27 | """find the next node (if any) for testing during a bisect search. |
General Comments 0
You need to be logged in to leave comments.
Login now