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