~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Martin Pool
  • Date: 2007-03-07 03:09:14 UTC
  • mto: (2321.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: mbp@sourcefrog.net-20070307030914-fb2gw9ae6lxcbbcd
Review cleanups: mostly updating or removing todo comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
624
624
            output. An unversioned file is defined as one with (False, False)
625
625
            for the versioned pair.
626
626
        """
627
 
        # this must return a sequence rather than a list so that it can hold a
628
 
        # read-lock for the whole time.
629
 
        #
630
 
        # TODO: this really only needs to lock the trees not the branches, so
631
 
        # could do with lock_tree_read() -- mbp 20070227
632
627
        result = []
633
 
        ## self.source.lock_read()
634
 
        ## self.target.lock_read()
635
 
        ## try:
636
628
        lookup_trees = [self.source]
637
629
        if extra_trees:
638
630
             lookup_trees.extend(extra_trees)