~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Martin Pool
  • Date: 2011-07-05 06:41:37 UTC
  • mto: (6015.9.2 2.4)
  • mto: This revision was merged to the branch mainline in revision 6047.
  • Revision ID: mbp@canonical.com-20110705064137-hhemvopiryip6j59
Truncate files when opening a write stream on them, rather than opening twice

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
 
328
328
    def open_write_stream(self, relpath, mode=None):
329
329
        """See Transport.open_write_stream."""
330
 
        # initialise the file
331
 
        self.put_bytes_non_atomic(relpath, "", mode=mode)
332
330
        abspath = self._abspath(relpath)
333
331
        handle = osutils.open_file(abspath, 'wb')
 
332
        handle.truncate()
334
333
        if mode is not None:
335
334
            self._check_mode_and_size(abspath, handle.fileno(), mode)
336
335
        transport._file_streams[self.abspath(relpath)] = handle