Mercurial > public > mercurial-scm > hg
comparison mercurial/context.py @ 19662:7299ef0f0a8b
workingfilectx: remove bogus comment
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Thu, 15 Aug 2013 13:09:34 -0500 |
parents | fa529f409574 |
children | 0af73d7869a6 |
comparison
equal
deleted
inserted
replaced
19661:fa529f409574 | 19662:7299ef0f0a8b |
---|---|
1183 | 1183 |
1184 class workingfilectx(basefilectx): | 1184 class workingfilectx(basefilectx): |
1185 """A workingfilectx object makes access to data related to a particular | 1185 """A workingfilectx object makes access to data related to a particular |
1186 file in the working directory convenient.""" | 1186 file in the working directory convenient.""" |
1187 def __init__(self, repo, path, filelog=None, workingctx=None): | 1187 def __init__(self, repo, path, filelog=None, workingctx=None): |
1188 """changeid can be a changeset revision, node, or tag. | |
1189 fileid can be a file revision or node.""" | |
1190 self._repo = repo | 1188 self._repo = repo |
1191 self._path = path | 1189 self._path = path |
1192 self._changeid = None | 1190 self._changeid = None |
1193 self._filerev = self._filenode = None | 1191 self._filerev = self._filenode = None |
1194 | 1192 |