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

  • Committer: Jelmer Vernooij
  • Date: 2009-03-28 14:24:46 UTC
  • mfrom: (4211 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4212.
  • Revision ID: jelmer@samba.org-20090328142446-vqi0ksswdurga631
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Tree classes, representing directory at point in time.
18
18
"""
97
97
            want_unversioned=want_unversioned,
98
98
            )
99
99
 
100
 
    @symbol_versioning.deprecated_method(symbol_versioning.one_three)
101
 
    def _iter_changes(self, *args, **kwargs):
102
 
        return self.iter_changes(*args, **kwargs)
103
 
 
104
100
    def iter_changes(self, from_tree, include_unchanged=False,
105
101
                     specific_files=None, pb=None, extra_trees=None,
106
102
                     require_versioned=True, want_unversioned=False):
548
544
        for child in getattr(entry, 'children', {}).itervalues():
549
545
            yield child.file_id
550
546
 
551
 
    @symbol_versioning.deprecated_method(symbol_versioning.one_six)
552
 
    def print_file(self, file_id):
553
 
        """Print file with id `file_id` to stdout."""
554
 
        import sys
555
 
        sys.stdout.write(self.get_file_text(file_id))
556
 
 
557
547
    def lock_read(self):
558
548
        pass
559
549