~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Aaron Bentley
  • Date: 2008-04-27 22:29:48 UTC
  • mfrom: (3382 +trunk)
  • mto: (3380.3.1 cleanup)
  • mto: This revision was merged to the branch mainline in revision 3392.
  • Revision ID: aaron@aaronbentley.com-20080427222948-hd5kcqx6157xq5on
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
            raise errors.NoSuchRevision(self, revision_id)
162
162
 
163
163
    @symbol_versioning.deprecated_method(symbol_versioning.one_two)
164
 
    @needs_read_lock
165
164
    def get_data_stream(self, revision_ids):
166
165
        """See Repository.get_data_stream.
167
166
        
170
169
        search_result = self.revision_ids_to_search_result(set(revision_ids))
171
170
        return self.get_data_stream_for_search(search_result)
172
171
 
173
 
    @needs_read_lock
174
172
    def get_data_stream_for_search(self, search):
175
173
        """See Repository.get_data_stream_for_search."""
176
174
        item_keys = self.item_keys_introduced_by(search.get_keys())