/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/http/_urllib.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:
156
156
        self._get_connection().fake_close()
157
157
        return code, data
158
158
 
159
 
    def should_cache(self):
160
 
        """Return True if the data pulled across should be cached locally.
161
 
        """
162
 
        return True
163
 
 
164
159
    def _head(self, relpath):
165
160
        """Request the HEAD of a file.
166
161