(self, file)
| 3223 | self.writeToGitStream(git_mode, relPath, contents) |
| 3224 | |
| 3225 | def streamOneP4Deletion(self, file): |
| 3226 | relPath = self.stripRepoPath(decode_path(file['path']), self.branchPrefixes) |
| 3227 | if verbose: |
| 3228 | sys.stdout.write("delete %s\n" % relPath) |
| 3229 | sys.stdout.flush() |
| 3230 | self.gitStream.write(encode_text_stream(u'D {}\n'.format(relPath))) |
| 3231 | |
| 3232 | if self.largeFileSystem and self.largeFileSystem.isLargeFile(relPath): |
| 3233 | self.largeFileSystem.removeLargeFile(relPath) |
| 3234 | |
| 3235 | def streamP4FilesCb(self, marshalled): |
| 3236 | """Handle another chunk of streaming data.""" |
no test coverage detected