Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/context.py @ 19951:d51c4d85ec23 stable
spelling: random spell checker fixes
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Thu, 24 Oct 2013 01:49:56 +0800 |
parents | 12a8bdd97b4f |
children | cd79d9ab5e42 |
comparison
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 |