~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

integrate Memory tests into transport interface tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
        As with other listing functions, only some transports implement this,.
191
191
        you may check via is_listable to determine if it will.
192
192
        """
193
 
        raise NotImplementedError
 
193
        raise errors.TransportNotPossible("This transport has not "
 
194
                                          "implemented iter_files_recursive."
 
195
                                          "(but must claim to be listable "
 
196
                                          "to trigger this error).")
194
197
 
195
198
    def get(self, relpath):
196
199
        """Get the file at the given relative path.