Show More
@@ -6,14 +6,12 b'' | |||
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from mercurial.node import nullid |
|
9 | from mercurial import util | |
|
10 | 9 | import struct, zlib, cStringIO |
|
11 | 10 | |
|
12 | 11 | _pack = struct.pack |
|
13 | 12 | _unpack = struct.unpack |
|
14 | 13 | _compress = zlib.compress |
|
15 | 14 | _decompress = zlib.decompress |
|
16 | _sha = util.sha1 | |
|
17 | 15 | |
|
18 | 16 | # Some code below makes tuples directly because it's more convenient. However, |
|
19 | 17 | # code outside this module should always use dirstatetuple. |
General Comments 0
You need to be logged in to leave comments.
Login now