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

  • Committer: Aaron Bentley
  • Date: 2007-12-20 14:28:59 UTC
  • mto: This revision was merged to the branch mainline in revision 3135.
  • Revision ID: abentley@panoramicfeedback.com-20071220142859-9tea7c02aw13w54k
Update docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
2832
2832
                   accelerator_tree=None):
2833
2833
        """See WorkingTreeFormat.initialize().
2834
2834
        
2835
 
        revision_id allows creating a working tree at a different
2836
 
        revision than the branch is at.
 
2835
        :param revision_id: if supplied, create a working tree at a different
 
2836
            revision than the branch is at.
 
2837
        :param accelerator_tree: A tree which can be used for retrieving file
 
2838
            contents more quickly than the revision tree, i.e. a workingtree.
 
2839
            The revision tree will be used for cases where accelerator_tree's
 
2840
            content is different.
2837
2841
        """
2838
2842
        if not isinstance(a_bzrdir.transport, LocalTransport):
2839
2843
            raise errors.NotLocalUrl(a_bzrdir.transport.base)