~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/__init__.py

 * The internal storage of history, and logical branch identity have now
   been split into Branch, and Repository. The common locking and file 
   management routines are now in bzrlib.lockablefiles. 
   (Aaron Bentley, Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
        else:
182
182
            fn = self._relpath(fileid)
183
183
 
 
184
        # FIXME RBC 20051128 this belongs in TextStore.
184
185
        fn_gz = fn + '.gz'
185
186
        if self._compressed:
186
187
            return fn_gz, fn
226
227
        super(TransportStore, self).__init__()
227
228
        self._transport = a_transport
228
229
        self._prefixed = prefixed
 
230
        # FIXME RBC 20051128 this belongs in TextStore.
229
231
        self._compressed = compressed
230
232
        self._suffixes = set()
231
233