mercurial/transaction.py
changeset 2858 345bac2bc4ec
parent 2470 fe1689273f84
child 3886 abaee83ce0a6
equal deleted inserted replaced
2857:c9b08cacf983 2858:345bac2bc4ec
     4 # errors and interruptions. More serious failures like system crashes
     4 # errors and interruptions. More serious failures like system crashes
     5 # can be recovered with an fsck-like tool. As the whole repository is
     5 # can be recovered with an fsck-like tool. As the whole repository is
     6 # effectively log-structured, this should amount to simply truncating
     6 # effectively log-structured, this should amount to simply truncating
     7 # anything that isn't referenced in the changelog.
     7 # anything that isn't referenced in the changelog.
     8 #
     8 #
     9 # Copyright 2005 Matt Mackall <mpm@selenic.com>
     9 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
    10 #
    10 #
    11 # This software may be used and distributed according to the terms
    11 # This software may be used and distributed according to the terms
    12 # of the GNU General Public License, incorporated herein by reference.
    12 # of the GNU General Public License, incorporated herein by reference.
    13 
    13 
    14 from demandload import demandload
    14 from demandload import demandload