##// END OF EJS Templates
transaction: add a way to know a transaction has been finalized...
marmoute -
r49525:3f618484 stable
parent child Browse files
Show More
@@ -229,6 +229,10 b' class transaction(util.transactional):'
229 if self._journal:
229 if self._journal:
230 self._abort()
230 self._abort()
231
231
232 @property
233 def finalized(self):
234 return self._finalizecallback is None
235
232 @active
236 @active
233 def startgroup(self):
237 def startgroup(self):
234 """delay registration of file entry
238 """delay registration of file entry
General Comments 0
You need to be logged in to leave comments. Login now