comparison mercurial/revlog.py @ 12012:bade7a9c5c07

revlog: fix docstring
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sat, 21 Aug 2010 19:31:59 +0200
parents f38b0a3308b6
children 44c22dc193a4
comparison
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+")