mercurial/context.py
branchstable
changeset 43346 6ada8a274b9c
parent 43147 54e943b28101
child 43503 313e3a279828
equal deleted inserted replaced
43345:dc3fe251de72 43346:6ada8a274b9c
  1185         self._repo = repo
  1185         self._repo = repo
  1186         self._path = path
  1186         self._path = path
  1187 
  1187 
  1188         assert (
  1188         assert (
  1189             changeid is not None or fileid is not None or changectx is not None
  1189             changeid is not None or fileid is not None or changectx is not None
  1190         ), b"bad args: changeid=%r, fileid=%r, changectx=%r" % (
  1190         ), (
  1191             changeid,
  1191             b"bad args: changeid=%r, fileid=%r, changectx=%r"
  1192             fileid,
  1192             % (changeid, fileid, changectx,)
  1193             changectx,
       
  1194         )
  1193         )
  1195 
  1194 
  1196         if filelog is not None:
  1195         if filelog is not None:
  1197             self._filelog = filelog
  1196             self._filelog = filelog
  1198 
  1197