equal
deleted
inserted
replaced
4 This provides efficient delta storage with O(1) retrieve and append |
4 This provides efficient delta storage with O(1) retrieve and append |
5 and O(changes) merge between branches |
5 and O(changes) merge between branches |
6 |
6 |
7 Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
7 Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
8 |
8 |
9 This software may be used and distributed according to the terms |
9 This software may be used and distributed according to the terms of the |
10 of the GNU General Public License, incorporated herein by reference. |
10 GNU General Public License version 2, incorporated herein by reference. |
11 """ |
11 """ |
12 |
12 |
13 # import stuff from node for others to import from revlog |
13 # import stuff from node for others to import from revlog |
14 from node import bin, hex, nullid, nullrev, short #@UnusedImport |
14 from node import bin, hex, nullid, nullrev, short #@UnusedImport |
15 from i18n import _ |
15 from i18n import _ |