(self)
| 184 | self.common_funny.append(x) |
| 185 | |
| 186 | def phase3(self): # Find out differences between common files |
| 187 | xx = cmpfiles(self.left, self.right, self.common_files) |
| 188 | self.same_files, self.diff_files, self.funny_files = xx |
| 189 | |
| 190 | def phase4(self): # Find out differences between common subdirectories |
| 191 | # A new dircmp (or MyDirCmp if dircmp was subclassed) object is created |
nothing calls this directly
no test coverage detected