mercurial/revlog.py
changeset 12012 bade7a9c5c07
parent 12011 f38b0a3308b6
child 12023 44c22dc193a4
equal deleted inserted replaced
12011:f38b0a3308b6 12012:bade7a9c5c07
  1133 
  1133 
  1134         text - the revision data to add
  1134         text - the revision data to add
  1135         transaction - the transaction object used for rollback
  1135         transaction - the transaction object used for rollback
  1136         link - the linkrev data to add
  1136         link - the linkrev data to add
  1137         p1, p2 - the parent nodeids of the revision
  1137         p1, p2 - the parent nodeids of the revision
  1138         d - an optional precomputed delta
  1138         cachedelta - an optional precomputed delta
  1139         """
  1139         """
  1140         dfh = None
  1140         dfh = None
  1141         if not self._inline:
  1141         if not self._inline:
  1142             dfh = self.opener(self.datafile, "a")
  1142             dfh = self.opener(self.datafile, "a")
  1143         ifh = self.opener(self.indexfile, "a+")
  1143         ifh = self.opener(self.indexfile, "a+")