(self)
| 190 | self.common_funny.append(x) |
| 191 | |
| 192 | def phase3(self): # Find out differences between common files |
| 193 | xx = cmpfiles(self.left, self.right, self.common_files, self.shallow) |
| 194 | self.same_files, self.diff_files, self.funny_files = xx |
| 195 | |
| 196 | def phase4(self): # Find out differences between common subdirectories |
| 197 | # A new dircmp (or MyDirCmp if dircmp was subclassed) object is created |
nothing calls this directly
no test coverage detected