~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2007-08-16 01:39:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2735.
  • Revision ID: aaron.bentley@utoronto.ca-20070816013943-hrsavkonrn3oqf92
Implement extract_files_bytes on Repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
    def extract_files_bytes(self, callable, desired_files):
229
229
        """Provide file contents to the callable, as an iterator of bytes.
230
230
 
 
231
        The order in which files will be extracted is unspecified.
231
232
        The default implementation just does get_file().
232
233
        :param callable: A callable that accepts (bytes_iterator,
233
234
            callable_data)