/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/remote.py

  • Committer: Aaron Bentley
  • Date: 2007-07-17 13:27:14 UTC
  • mfrom: (2624 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070717132714-tmzx9khmg9501k51
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
641
641
        # TODO: Suggestion from john: using external tar is much faster than
642
642
        # python's tarfile library, but it may not work on windows.
643
643
 
 
644
    @needs_write_lock
 
645
    def pack(self):
 
646
        """Compress the data within the repository.
 
647
 
 
648
        This is not currently implemented within the smart server.
 
649
        """
 
650
        self._ensure_real()
 
651
        return self._real_repository.pack()
 
652
 
644
653
    def set_make_working_trees(self, new_value):
645
654
        raise NotImplementedError(self.set_make_working_trees)
646
655