(self, names, wait=True)
| 362 | os.utime(dst_name, (stats.st_atime, stats.st_mtime)) |
| 363 | |
| 364 | def touch(self, names, wait=True): |
| 365 | if names.__class__ is str: |
| 366 | names = [names] |
| 367 | for name in names: |
| 368 | path = self.native_file_name(name) |
| 369 | if wait: |
| 370 | self.__ensure_newer_than_last_build(path) |
| 371 | else: |
| 372 | os.utime(path, None) |
| 373 | |
| 374 | def rm(self, names): |
| 375 | if not type(names) == types.ListType: |