mercurial/context.py
changeset 8312 b87a50b7125c
parent 8225 46293a0c7e9f
child 8380 a00a4db76a15
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
     5 # This software may be used and distributed according to the terms of the
     5 # This software may be used and distributed according to the terms of the
     6 # GNU General Public License version 2, incorporated herein by reference.
     6 # GNU General Public License version 2, incorporated herein by reference.
     7 
     7 
     8 from node import nullid, nullrev, short, hex
     8 from node import nullid, nullrev, short, hex
     9 from i18n import _
     9 from i18n import _
    10 import ancestor, bdiff, error, util, os, errno
    10 import ancestor, bdiff, error, util
       
    11 import os, errno
    11 
    12 
    12 propertycache = util.propertycache
    13 propertycache = util.propertycache
    13 
    14 
    14 class changectx(object):
    15 class changectx(object):
    15     """A changecontext object makes access to data related to a particular
    16     """A changecontext object makes access to data related to a particular