Changeset 15 in tailor
- Timestamp:
- 06/20/04 12:05:59 (9 years ago)
- Hash name:
- 20040620100559-97f81-21ba797856dda2064ae74a3695ba41de5c2e72f2
- Location:
- vcpx
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vcpx/source.py
r14 r15 43 43 return self._getUpstreamChangesets(self, root) 44 44 45 def applyUpstreamChangesets(self, root, changesets ):45 def applyUpstreamChangesets(self, root, changesets, replay=None): 46 46 """ 47 47 Apply the collected upstream changes. 48 48 49 49 Loop over the collected changesets, doing whatever is needed 50 to apply each one to the working dir. 50 to apply each one to the working dir and if the changes do 51 not raise conflicts call the `replay` function to mirror the 52 changes on the target. 51 53 52 54 Return a sequence (potentially empty!) of conflicts. … … 58 60 if res: 59 61 conflicts.append((c, res)) 60 62 else: 63 if replay: 64 replay(root, c) 65 61 66 return conflicts 62 67 -
vcpx/target.py
r14 r15 90 90 91 91 raise "%s should override this method" % self.__class__ 92
Note: See TracChangeset
for help on using the changeset viewer.
