mercurial/context.py
branchstable
changeset 19951 d51c4d85ec23
parent 19902 12a8bdd97b4f
child 20035 cd79d9ab5e42
equal deleted inserted replaced
19950:cce7ab960312 19951:d51c4d85ec23
   195     def dirty(self):
   195     def dirty(self):
   196         return False
   196         return False
   197 
   197 
   198 class changectx(basectx):
   198 class changectx(basectx):
   199     """A changecontext object makes access to data related to a particular
   199     """A changecontext object makes access to data related to a particular
   200     changeset convenient. It represents a read-only context already presnt in
   200     changeset convenient. It represents a read-only context already present in
   201     the repo."""
   201     the repo."""
   202     def __init__(self, repo, changeid=''):
   202     def __init__(self, repo, changeid=''):
   203         """changeid is a revision number, node, or tag"""
   203         """changeid is a revision number, node, or tag"""
   204 
   204 
   205         # since basectx.__new__ already took care of copying the object, we
   205         # since basectx.__new__ already took care of copying the object, we