~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-14 04:53:15 UTC
  • mfrom: (1910.7.21 cosmetic)
  • Revision ID: pqm@pqm.ubuntu.com-20060914045315-d646c86b3f4722f2
(Andrew Bennetts, Robert Collins, Martin Pool) Various cosmetic improvements to docstrings and comments throughout bzrlib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1739
1739
        raise NotImplementedError(self.copy_content)
1740
1740
 
1741
1741
    def fetch(self, revision_id=None, pb=None):
 
1742
        """Fetch the content required to construct revision_id.
 
1743
 
 
1744
        The content is copied from self.source to self.target.
 
1745
 
 
1746
        :param revision_id: if None all content is copied, if NULL_REVISION no
 
1747
                            content is copied.
 
1748
        :param pb: optional progress bar to use for progress reports. If not
 
1749
                   provided a default one will be created.
 
1750
 
 
1751
        Returns the copied revision count and the failed revisions in a tuple:
 
1752
        (copied, failures).
 
1753
        """
1742
1754
        raise NotImplementedError(self.fetch)
1743
1755
   
1744
1756
    @needs_read_lock
1811
1823
 
1812
1824
    @needs_write_lock
1813
1825
    def fetch(self, revision_id=None, pb=None):
1814
 
        """Fetch the content required to construct revision_id.
1815
 
 
1816
 
        The content is copied from source to target.
1817
 
 
1818
 
        :param revision_id: if None all content is copied, if NULL_REVISION no
1819
 
                            content is copied.
1820
 
        :param pb: optional progress bar to use for progress reports. If not
1821
 
                   provided a default one will be created.
1822
 
 
1823
 
        Returns the copied revision count and the failed revisions in a tuple:
1824
 
        (copied, failures).
1825
 
        """
 
1826
        """See InterRepository.fetch()."""
1826
1827
        from bzrlib.fetch import GenericRepoFetcher
1827
1828
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
1828
1829
               self.source, self.source._format, self.target,