~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/index.py

  • Committer: Robert Collins
  • Date: 2007-11-27 22:26:43 UTC
  • mto: This revision was merged to the branch mainline in revision 3039.
  • Revision ID: robertc@robertcollins.net-20071127222643-86fymmfpn6xw88up
Docstring fixes from review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1158
1158
        """Iterate over keys within the index.
1159
1159
 
1160
1160
        :param keys: An iterable providing the keys to be retrieved.
1161
 
        :return: An iterable of (index, key, reference_lists, value). There is no
 
1161
        :return: An iterable of (index, key, value, reference_lists). There is no
1162
1162
            defined order for the result iteration - it will be in the most
1163
1163
            efficient order for the index (keys iteration order in this case).
1164
1164
        """
1342
1342
        """Iterate over keys within the index.
1343
1343
 
1344
1344
        :param keys: An iterable providing the keys to be retrieved.
1345
 
        :return: An iterable of (key, reference_lists, value). There is no
 
1345
        :return: An iterable of (index, key, value, reference_lists). There is no
1346
1346
            defined order for the result iteration - it will be in the most
1347
1347
            efficient order for the index (keys iteration order in this case).
1348
1348
        """