~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-04 13:42:42 UTC
  • mfrom: (4463.1.2 progress)
  • Revision ID: pqm@pqm.ubuntu.com-20090804134242-l38wkokrlhd8ci6l
(mbp) updates to progress-related docstrings and remove another
        obsolete method

Show diffs side-by-side

added added

removed removed

Lines of Context:
846
846
        """Get a list of file-like objects, one for each entry in relpaths.
847
847
 
848
848
        :param relpaths: A list of relative paths.
849
 
        :param pb:  An optional ProgressBar for indicating percent done.
 
849
        :param pb:  An optional ProgressTask for indicating percent done.
850
850
        :return: A list or generator of file-like objects
851
851
        """
852
852
        # TODO: Consider having this actually buffer the requests,
1015
1015
        the supplied location.
1016
1016
 
1017
1017
        :param files: A set of (path, f) entries
1018
 
        :param pb:  An optional ProgressBar for indicating percent done.
 
1018
        :param pb:  An optional ProgressTask for indicating percent done.
1019
1019
        """
1020
1020
        return self._iterate_over(files, self.append_file, pb, 'append', expand=True)
1021
1021