/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Andrew Bennetts
  • Date: 2008-05-07 22:47:56 UTC
  • mfrom: (3412 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3414.
  • Revision ID: andrew.bennetts@canonical.com-20080507224756-upxgmud0bdo4ysuf
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
240
240
        """
241
241
        raise NotImplementedError(self.mkdir)
242
242
 
 
243
    @needs_write_lock
 
244
    def put_file_bytes_non_atomic(self, file_id, bytes):
 
245
        """Update the content of a file in the tree.
 
246
        
 
247
        Note that the file is written in-place rather than being
 
248
        written to a temporary location and renamed. As a consequence,
 
249
        readers can potentially see the file half-written.
 
250
 
 
251
        :param file_id: file-id of the file
 
252
        :param bytes: the new file contents
 
253
        """
 
254
        raise NotImplementedError(self.put_file_bytes_non_atomic)
 
255
 
243
256
    def set_parent_ids(self, revision_ids, allow_leftmost_as_ghost=False):
244
257
        """Set the parents ids of the working tree.
245
258