~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Martin Pool
  • Date: 2009-06-23 06:58:46 UTC
  • mto: This revision was merged to the branch mainline in revision 4586.
  • Revision ID: mbp@sourcefrog.net-20090623065846-wvsuj9gip4e723i1
Update docstrings for recent progress changes

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