/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: Ian Clatworthy
  • Date: 2008-04-17 12:16:17 UTC
  • mto: (4171.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4173.
  • Revision ID: ian.clatworthy@canonical.com-20080417121617-0xggo6gr7cdmrly6
tests for ..input_file and ..output_lines

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
    splitpath,
103
103
    supports_executable,
104
104
    )
105
 
from bzrlib.filters import filtered_input, filters_for_path
 
105
from bzrlib.filters import filtered_input_file, filters_for_path
106
106
from bzrlib.trace import mutter, note
107
107
from bzrlib.transport.local import LocalTransport
108
108
from bzrlib.progress import DummyProgress, ProgressPhase
495
495
    def get_file_byname(self, filename):
496
496
        path = self.abspath(filename)
497
497
        filters = filters_for_path(path)
498
 
        return filtered_input(file(path, 'rb'), filters)
 
498
        return filtered_input_file(file(path, 'rb'), filters)
499
499
 
500
500
    @needs_read_lock
501
501
    def annotate_iter(self, file_id, default_revision=CURRENT_REVISION):