mercurial/revlog.py
changeset 2858 345bac2bc4ec
parent 2801 81d7db1aa0fb
child 2910 5df3e5cf16bc
equal deleted inserted replaced
2857:c9b08cacf983 2858:345bac2bc4ec
     2 revlog.py - storage back-end for mercurial
     2 revlog.py - storage back-end for mercurial
     3 
     3 
     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 Matt Mackall <mpm@selenic.com>
     7 Copyright 2005, 2006 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
    10 of the GNU General Public License, incorporated herein by reference.
    10 of the GNU General Public License, incorporated herein by reference.
    11 """
    11 """
    12 
    12