~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/fakevfat.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-26 22:14:42 UTC
  • mto: This revision was merged to the branch mainline in revision 3747.
  • Revision ID: john@arbash-meinel.com-20080926221442-3r67j99sr9rwe9w0
Make message optional, don't check the memory flag directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    which actually stored the files.
65
65
    """
66
66
 
 
67
    def _can_roundtrip_unix_modebits(self):
 
68
        """See Transport._can_roundtrip_unix_modebits()."""
 
69
        return False
 
70
 
67
71
    @classmethod
68
72
    def _get_url_prefix(self):
69
73
        """Readonly transport decorators are invoked via 'vfat+'"""
88
92
    def has(self, relpath):
89
93
        return self._decorated.has(self._squash_name(relpath))
90
94
 
91
 
    def readv(self, relpath, offsets):
 
95
    def _readv(self, relpath, offsets):
92
96
        return self._decorated.readv(self._squash_name(relpath), offsets)
93
97
 
94
98
    def put_file(self, relpath, f, mode=None):