/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/fakevfat.py

  • Committer: Martin Pool
  • Date: 2007-10-10 00:21:57 UTC
  • mfrom: (2900 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2901.
  • Revision ID: mbp@sourcefrog.net-20071010002157-utci0x44m2w47wgd
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    def has(self, relpath):
93
93
        return self._decorated.has(self._squash_name(relpath))
94
94
 
95
 
    def readv(self, relpath, offsets):
 
95
    def _readv(self, relpath, offsets):
96
96
        return self._decorated.readv(self._squash_name(relpath), offsets)
97
97
 
98
98
    def put_file(self, relpath, f, mode=None):