/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-16 04:42:31 UTC
  • mfrom: (2701.1.3 remove-should-cache)
  • Revision ID: pqm@pqm.ubuntu.com-20070816044231-k9pvlics7hlhxuw5
Remove Transport.should_cache.

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
        """
352
352
        raise NotImplementedError(self.external_url)
353
353
 
354
 
    def should_cache(self):
355
 
        """Return True if the data pulled across should be cached locally.
356
 
        """
357
 
        return False
358
 
 
359
354
    def _pump(self, from_file, to_file):
360
355
        """Most children will need to copy from one file-like 
361
356
        object or string to another one.