Show More
@@ -6,15 +6,20 b'' | |||
|
6 | 6 | # This software may be used and distributed according to the terms of the |
|
7 | 7 | # GNU General Public License version 2 or any later version. |
|
8 | 8 | |
|
9 | import heapq | |
|
9 | from __future__ import absolute_import | |
|
10 | ||
|
10 | 11 | import copy |
|
11 |
import |
|
|
12 | import phases | |
|
13 | import util | |
|
14 | import obsolete | |
|
12 | import heapq | |
|
15 | 13 | import struct |
|
16 | import tags as tagsmod | |
|
17 | from node import nullrev | |
|
14 | ||
|
15 | from .node import nullrev | |
|
16 | from . import ( | |
|
17 | error, | |
|
18 | obsolete, | |
|
19 | phases, | |
|
20 | tags as tagsmod, | |
|
21 | util, | |
|
22 | ) | |
|
18 | 23 | |
|
19 | 24 | def hideablerevs(repo): |
|
20 | 25 | """Revisions candidates to be hidden |
General Comments 0
You need to be logged in to leave comments.
Login now