##// END OF EJS Templates
transaction: introduce "changes" dictionary to precisely track updates...
Pierre-Yves David -
r32261:97668112 default
parent child Browse files
Show More
@@ -137,6 +137,10 b' class transaction(object):'
137 137 releasefn = lambda tr, success: None
138 138 self.releasefn = releasefn
139 139
140 # A dict dedicated to precisely tracking the changes introduced in the
141 # transaction.
142 self.changes = {}
143
140 144 # a dict of arguments to be passed to hooks
141 145 self.hookargs = {}
142 146 self.file = opener.open(self.journal, "w")
General Comments 0
You need to be logged in to leave comments. Login now